/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Cormorant+Garamond:wght@300;400;500;600&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f0ea;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(20, 10, 5, 0.95) 0%, rgba(40, 20, 10, 0.92) 100%);
    padding: 15px 40px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.nav-logo {
    height: 50px;
    width: auto;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 1;
}

.nav-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #d4af37;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
    flex-grow: 1;
    justify-content: center;
}

.nav-menu li a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: #e8dcc8;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: #d4af37;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-button {
    background: linear-gradient(135deg, #d4af37 0%, #c9a228 100%);
    color: #2a1810;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
    display: inline-block;
}

.nav-button:hover {
    background: linear-gradient(135deg, #e8c75a 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

/* Hero Section */
.hero {
    margin-top: 34px;
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: zoomInSlide 0.8s ease-out;
}

@keyframes zoomInSlide {
    from {
        transform: scale(1.05);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 10, 5, 0.1);
    pointer-events: none;
}

.hero-content {
    position: absolute;
    bottom: 40px;
    /* left: 50%; */
    transform: translateX(-50%);
    z-index: 10;
    width: 90%;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-subscribe-box {
    background: linear-gradient(135deg, rgba(20, 10, 5, 0.85) 0%, rgba(40, 20, 10, 0.85) 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #d4af37;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.hero-subscribe-text {
    color: #e8dcc8;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.hero-subscribe-btn i {
    font-size: 1.2rem;
}

.hero-subscribe-btn:hover {
    background: linear-gradient(135deg, #ff3333 0%, #FF0000 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
}

/* About Us Section */
.about-section {
    background: linear-gradient(135deg, #0f172e 0%, #1a1f3a 50%, #0f172e 100%);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Decorative Ornaments */
.about-ornament {
    position: absolute;
    font-size: 120px;
    opacity: 0.15;
    pointer-events: none;
    color: #d4af37;
}

.about-ornament-left {
    top: 20px;
    left: 20px;
}

.about-ornament-right {
    bottom: 20px;
    right: 20px;
    transform: rotate(180deg);
}

.about-ornament::before {
    content: '✦';
}

/* About Header */
.about-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.about-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #d4af37;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 400;
}

.about-logo-section {
    text-align: center;
}

.about-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    color: #d4af37;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1;
}

.about-logo-subtext {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #d4af37;
    letter-spacing: 4px;
    margin-top: 10px;
    text-transform: uppercase;
    font-weight: 400;
}

/* About Content */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border: 3px solid #d4af37;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-text {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.founder-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.founder-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #e8dcc8;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 600;
}

.about-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: #d4cfc5;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.founder-quote {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid #d4af37;
    padding: 20px;
    margin: 30px 0;
    border-radius: 4px;
}

.founder-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: #e8dcc8;
    line-height: 1.8;
    font-style: italic;
}

.founder-signature {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #d4af37;
    margin-top: 30px;
    letter-spacing: 1px;
}

/* Connect With Us */
.about-connect {
    text-align: center;
    padding: 60px;
    background: rgba(20, 10, 5, 0.4);
    border: 2px solid #d4af37;
    border-radius: 12px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.connect-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.social-link {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4af37 0%, #c9a228 100%);
    border-radius: 50%;
    color: #1a1f3a;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.social-link.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
    color: white;
}

.social-link.instagram {
    background: linear-gradient(135deg, #E4405F 0%, #d83d76 100%);
    color: white;
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0a66c2 100%);
    color: white;
}

.social-handles {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.social-handles p {
    font-family: 'Cormorant Garamond', serif;
    color: #d4af37;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.whatsapp-btn:hover {
    background: #d4af37;
    color: #1a1f3a;
    transform: translateY(-3px);
}

.whatsapp-btn i {
    font-size: 1.3rem;
}

/* About Footer */
.about-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #d4af37;
    position: relative;
    z-index: 1;
}

.about-footer p {
    font-family: 'Cormorant Garamond', serif;
    color: #d4af37;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

/* Coming Soon Section */
.coming-soon {
    background: linear-gradient(180deg, #f5f0ea 0%, #e8dcc8 50%, #f5f0ea 100%);
    padding: 55px 40px;
    position: relative;
    overflow: hidden;
}

.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.coming-soon-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    animation: fadeInDown 0.8s ease-out;
}

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

.coming-soon-logo {
    height: 105px;
    width: auto;
    /* margin-bottom: 20px; */
    opacity: 0.95;
}

.coming-soon-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #2a1810;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.coming-soon-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: #8b6f47;
    margin-bottom: 20px;
}

.coming-soon-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #4a3728;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

/* Service Cards */
.services-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 3px solid #d4af37;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.service-icon-circle {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    background: linear-gradient(135deg, #f5f0ea 0%, #e8dcc8 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2a1810;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    background: white;
    padding: 50px 40px;
    border-radius: 10px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.features-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2a1810;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #4a3728;
}

.check-icon {
    color: #d4af37;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, rgba(20, 10, 5, 0.95) 0%, rgba(40, 20, 10, 0.92) 100%);
    padding: 60px 40px;
    border-radius: 10px;
    color: #e8dcc8;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-location,
.contact-phone {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.contact-location i,
.contact-phone i {
    color: #d4af37;
    font-size: 1.4rem;
}

.contact-phone a {
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-phone a:hover {
    text-decoration: underline;
}

/* Social Section */
.social-section {
    background: white;
    padding: 50px 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.social-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2a1810;
    margin-bottom: 10px;
    font-weight: 700;
}

.social-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: #8b6f47;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icon i {
    font-size: 1.5rem;
}

.social-icon.instagram {
    color: #E4405F;
    border-color: #E4405F;
}

.social-icon.instagram:hover {
    background-color: rgba(228, 64, 95, 0.1);
}

.social-icon.facebook {
    color: #1877F2;
    border-color: #1877F2;
}

.social-icon.facebook:hover {
    background-color: rgba(24, 119, 242, 0.1);
}

.social-icon.youtube {
    color: #FF0000;
    border-color: #FF0000;
}

.social-icon.youtube:hover {
    background-color: rgba(255, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #d4af37 0%, #b8940a 100%);
    padding: 50px 40px;
    border-radius: 10px;
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-section p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(20, 10, 5, 0.98) 0%, rgba(40, 20, 10, 0.95) 100%);
    color: #d4af37;
    padding: 60px 40px 30px;
    border-top: 2px solid #d4af37;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #e8dcc8;
    margin-bottom: 20px;
}

.footer-address {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: #e8dcc8;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-phone a {
    color: #d4af37;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-phone a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: #e8dcc8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 20px;
    }

    .nav-container {
        gap: 20px;
        flex-wrap: wrap;
    }

    .nav-brand {
        gap: 10px;
    }

    .nav-logo {
        height: 40px;
    }

    .nav-text {
        font-size: 1rem;
    }

    .nav-menu {
        gap: 20px;
        flex-basis: 100%;
        order: 3;
    }

    .nav-menu li a {
        font-size: 0.95rem;
    }

    .nav-button {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .hero {
        height: 400px;
        margin-top: 70px;
    }

    .hero-content {
        bottom: 30px;
        max-width: 350px;
    }

    .hero-subscribe-box {
        padding: 25px;
    }

    .hero-subscribe-text {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .hero-subscribe-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    /* About Section Tablet */
    .about-section {
        padding: 60px 30px;
    }

    .about-subtitle {
        font-size: 1.5rem;
    }

    .about-logo-text {
        font-size: 3.5rem;
    }

    .about-logo-subtext {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .about-image {
        max-width: 350px;
    }

    .founder-name {
        font-size: 2.2rem;
    }

    .founder-title {
        font-size: 1.1rem;
    }

    .about-description {
        font-size: 1.02rem;
    }

    .about-connect {
        padding: 50px 30px;
    }

    .connect-title {
        font-size: 1.8rem;
    }

    .social-links {
        gap: 30px;
    }

    .social-handles {
        gap: 30px;
    }

    .coming-soon {
        padding: 60px 20px;
    }

    .coming-soon-title {
        font-size: 2.5rem;
    }

    .coming-soon-subtitle {
        font-size: 1.3rem;
    }

    .coming-soon-description {
        font-size: 1.1rem;
    }

    .services-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon-circle {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    .features-section {
        padding: 40px 20px;
        margin-bottom: 40px;
    }

    .features-title {
        font-size: 1.7rem;
        margin-bottom: 30px;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-list li {
        font-size: 1rem;
    }

    .contact-section {
        padding: 40px 20px;
        margin-bottom: 40px;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .contact-location,
    .contact-phone {
        font-size: 1rem;
    }

    .social-section {
        padding: 40px 20px;
        margin-bottom: 30px;
    }

    .social-title {
        font-size: 1.7rem;
    }

    .social-subtitle {
        font-size: 1rem;
    }

    .social-icons {
        gap: 15px;
    }

    .social-icon {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .cta-section {
        padding: 40px 20px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .footer {
        padding: 40px 20px 20px;
    }

    .footer-brand {
        font-size: 1.8rem;
    }

    .footer-tagline {
        font-size: 1rem;
    }

    .footer-address {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 15px;
    }

    .nav-container {
        gap: 15px;
    }

    .nav-brand {
        gap: 8px;
    }

    .nav-logo {
        height: 35px;
    }

    .nav-text {
        font-size: 0.9rem;
    }

    .nav-menu {
        gap: 15px;
        flex-basis: 100%;
        order: 3;
    }

    .nav-menu li a {
        font-size: 0.85rem;
    }

    .nav-button {
        padding: 8px 20px;
        font-size: 0.8rem;
    }

    .hero {
        height: 300px;
        margin-top: 60px;
    }

    .hero-content {
        bottom: 20px;
        max-width: 300px;
    }

    .hero-subscribe-box {
        padding: 20px;
        border-radius: 12px;
    }

    /* About Section Mobile */
    .about-section {
        padding: 60px 20px;
    }

    .about-ornament {
        font-size: 80px;
    }

    .about-header {
        margin-bottom: 40px;
    }

    .about-subtitle {
        font-size: 1.3rem;
    }

    .about-logo-text {
        font-size: 3rem;
    }

    .about-logo-subtext {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .about-image {
        max-width: 100%;
    }

    .founder-name {
        font-size: 1.8rem;
    }

    .founder-title {
        font-size: 1rem;
    }

    .about-description {
        font-size: 1rem;
        text-align: left;
    }

    .founder-quote {
        padding: 15px;
    }

    .founder-quote p {
        font-size: 1rem;
    }

    .founder-signature {
        font-size: 1.5rem;
    }

    .about-connect {
        padding: 40px 20px;
        margin-bottom: 30px;
    }

    .connect-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .social-links {
        gap: 20px;
        margin-bottom: 20px;
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .social-handles {
        gap: 20px;
        flex-direction: column;
    }

    .social-handles p {
        font-size: 0.9rem;
    }

    .whatsapp-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .hero-subscribe-text {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .hero-subscribe-btn {
        padding: 8px 20px;
        font-size: 0.8rem;
    }

    .coming-soon {
        padding: 40px 15px;
    }

    .coming-soon-logo {
        height: 60px;
    }

    .coming-soon-title {
        font-size: 1.8rem;
    }

    .coming-soon-subtitle {
        font-size: 1rem;
    }

    .coming-soon-description {
        font-size: 1rem;
        margin-bottom: 50px;
    }

    .service-card {
        padding: 25px 15px;
    }

    .service-icon-circle {
        font-size: 2rem;
        width: 60px;
        height: 60px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .features-section {
        padding: 30px 15px;
        margin-bottom: 30px;
    }

    .features-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .features-list li {
        font-size: 0.95rem;
        gap: 10px;
    }

    .contact-section {
        padding: 30px 15px;
        margin-bottom: 30px;
    }

    .contact-title {
        font-size: 1.5rem;
    }

    .contact-location,
    .contact-phone {
        font-size: 0.95rem;
        flex-direction: column;
        gap: 8px;
    }

    .social-section {
        padding: 30px 15px;
        margin-bottom: 25px;
    }

    .social-title {
        font-size: 1.4rem;
    }

    .social-subtitle {
        font-size: 0.95rem;
    }

    .social-icons {
        flex-direction: column;
        gap: 12px;
    }

    .social-icon {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        justify-content: center;
        padding: 12px 15px;
    }

    .cta-section {
        padding: 30px 15px;
    }

    .cta-title {
        font-size: 1.3rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .footer {
        padding: 30px 15px 15px;
    }

    .footer-brand {
        font-size: 1.4rem;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .footer-address {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding-top: 15px;
        font-size: 0.8rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease-out;
}

.service-card:nth-child(2) {
    animation-delay: 0.1s;
}

.service-card:nth-child(3) {
    animation-delay: 0.2s;
}

.service-card:nth-child(4) {
    animation-delay: 0.3s;
}
