:root {
    --primary-color: #DE5D83;
    --primary-hover: #c94d72;
    --secondary-color: #FFFFFF;
    --bg-light: #FFF9FA;
    --text-dark: #2D2D2D;
    --text-light: #6D6D6D;
    --white: #FFFFFF;
    --shadow: 0 15px 35px rgba(222, 93, 131, 0.1);
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    /* Subtle floral pattern overlay */
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23DE5D83' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Decorative Background Elements */
.decor-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.decor-bg i {
    position: absolute;
    color: var(--primary-color);
    opacity: 0.05;
    animation: floatAnim 15s ease-in-out infinite;
}

.decor-1 { font-size: 15rem; top: 10%; right: -5%; transform: rotate(15deg); }
.decor-2 { font-size: 12rem; bottom: 5%; left: -5%; transform: rotate(-20deg); animation-delay: -5s !important; }
.decor-3 { font-size: 18rem; top: 20%; left: -10%; transform: rotate(45deg); animation-delay: -2s !important; }
.decor-4 { font-size: 10rem; bottom: 10%; right: 5%; transform: rotate(-10deg); animation-delay: -8s !important; }

@keyframes floatAnim {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -50px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(222, 93, 131, 0.3);
}

.btn-secondary {
    background-color: var(--text-dark);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #000;
    transform: translateY(-3px);
}

.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Header */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

#main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
}

.logo img {
    height: 85px;
    transition: var(--transition);
}

#main-header.scrolled .logo img {
    height: 65px;
}

#navbar ul {
    display: flex;
    gap: 2rem;
}

#navbar ul li a {
    font-weight: 500;
    color: var(--text-dark);
}

#navbar ul li a:hover {
    color: var(--primary-color);
}

#navbar.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    animation: slideDown 0.3s ease;
}

#navbar.active ul {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
#hero {
    padding-top: 200px;
    padding-bottom: 120px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.badge {
    background-color: rgba(222, 93, 131, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: inline-block;
}

#hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

#hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
    animation: float 6s ease-in-out infinite;
}

.image-accent {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    top: 30px;
    right: -30px;
    border-radius: 20px;
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Portfolio Section */
#portfolio {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--white) 0%, var(--bg-light) 100%);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.underline {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

.portfolio-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.item-img {
    height: 350px;
    overflow: hidden;
}

.item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .item-img img {
    transform: scale(1.1);
}

.item-info {
    padding: 1.5rem;
    text-align: center;
}

.item-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.item-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Services Section */
#services {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.services-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.services-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.service-list {
    margin-top: 2rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.district-link {
    color: inherit;
    transition: var(--transition);
}

.district-link:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.service-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.services-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-card span {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
}

.stat-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Section */
#contact {
    padding: 100px 0;
    background: linear-gradient(to top, var(--bg-light) 0%, var(--white) 100%);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.info-items {
    margin: 3rem 0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item i {
    width: 50px;
    height: 50px;
    background-color: rgba(222, 93, 131, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 450px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Footer */
footer {
    padding: 40px 0;
    background-color: #1a1a1a;
    color: var(--white);
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-content p {
    opacity: 0.5;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.agency-signature {
    display: flex;
    align-items: center;
}

.agency-logo {
    width: 140px;
    height: auto;
    /* Filter to match #DE5D83 (pink) */
    filter: invert(65%) sepia(48%) saturate(541%) hue-rotate(301deg) brightness(91%) contrast(93%);
    opacity: 0.8;
    transition: var(--transition);
}

.agency-logo:hover {
    filter: brightness(0) invert(1); /* Turns white on hover for contrast */
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-flex {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(222, 93, 131, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #c94d72; /* Slightly darker pink */
    color: var(--white);
}

/* Responsive */
@media (max-width: 992px) {
    #hero h1 { font-size: 2.4rem; }
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .hero-text p { margin-left: auto; margin-right: auto; font-size: 1rem; }
    .hero-btns { justify-content: center; }
    .hero-image { order: -1; margin-bottom: 2rem; }
    .image-accent { right: 0; top: 20px; left: 20px; }
    .services-wrapper { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    #navbar { display: none; }
    .mobile-menu-btn { display: block; }
    .header-cta { display: none; }
    #hero { padding-top: 180px; }
    .hero-image { margin-top: 2rem; }
    .section-title h2 { font-size: 1.8rem; }
    #hero h1 { font-size: 2rem; }
    .hero-btns { flex-direction: column; align-items: center; gap: 1rem; }
    .hero-btns .btn { width: 100%; max-width: 280px; text-align: center; }
}
