/* ====== Global Styles ====== */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --secondary-color: #d3af6d;
    --accent-color: #66c9e8;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --text-primary: #1e1b4b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --bg-light: #f8fafc;
    --bg-lighter: #f1f5f9;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

/* ====== Navigation ====== */
nav {
    background: #ffffff;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    color: #111111;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(102, 201, 232, 0.4));
}

.logo i {
    font-size: 1.8rem;
    transition: transform 0.6s ease;
}

.logo:hover i {
    transform: rotate(15deg) scale(1.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    background: transparent;
}

.nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(211, 175, 109, 0.1);
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #d3af6d;
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #d3af6d;
    background: rgba(211, 175, 109, 0.1);
    box-shadow: 0 0 15px rgba(211, 175, 109, 0.2);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 2.5px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ====== Buttons ====== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: #d3af6d;
    color: #ffffff;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin: 0.5rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(211, 175, 109, 0.3);
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover::after {
    transform: translateX(100%);
}

.btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(211, 175, 109, 0.4);
    background: #b89250;
    color: var(--white);
}

.btn:active {
    transform: translateY(-2px) scale(0.98);
    color: var(--white);
}

.btn i {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #d3af6d;
    color: #d3af6d;
    box-shadow: 0 4px 15px rgba(211, 175, 109, 0.4);
}

.btn-secondary:hover {
    background: rgba(211, 175, 109, 0.2);
    box-shadow: 0 8px 25px rgba(211, 175, 109, 0.6);
    color: #ffffff;
}

.btn i {
    font-size: 1.2rem;
}

/* ====== Hero Section ====== */
/* Hide by default */
.hero-section {
    display: none;
}

/* Hide only when on desktop view */
@media(min-width: 768px) {
    .desktop-only {
        display: none; /* or flex/grid depending on layout */
    }

    .hero-section {
        display: none;
    }
}

/* Show only when in mobile viewport */
@media(max-width: 768px) {
    .desktop-only {
        display: block; /* or flex/grid depending on layout */
    }

    .hero-section {
        display: flex;
    }
}

.hero {
        position: relative;
        background: #f8f9fa !important;
        color: #1a1a1a;
        padding: 6rem 2rem;
        text-align: center;
        overflow: hidden;
        min-height: 650px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

/* ===== EXISTING FLOAT BLOBS ===== */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(129, 185, 240, 0.552) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

@media (max-width: 768px) {
    .home-swiper {
        display: none;
    }
}


section .hero {
    margin: 0 !important;
    padding: 0 !important;
}

.hero-shadow-title {
    font-size: 60px;
    font-weight: bold;

    /* Text border effect using multiple shadows */
    text-shadow: 
        -2px -2px 0 #000,  /* top-left */
        2px -2px 0 #000,  /* top-right */
        -2px  2px 0 #000,  /* bottom-left */
        2px  2px 0 #000,  /* bottom-right */
        4px  4px 6px rgba(0,0,0,0.6); /* actual shadow */
}

.hero-shadow-subtitle {
    font-size: 20px;
    font-weight: bold;

    /* Text border effect using multiple shadows */
    text-shadow: 
        -2px -2px 0 #000,  /* top-left */
        2px -2px 0 #000,  /* top-right */
        -2px  2px 0 #000,  /* bottom-left */
        2px  2px 0 #000,  /* bottom-right */
        4px  4px 6px rgba(0,0,0,0.6); /* actual shadow */
}

.hero-shadow-text {
    font-size: 14px;
    font-weight: bold;

    /* Text border effect using multiple shadows */
    text-shadow: 
        -2px -2px 0 #000,  /* top-left */
        2px -2px 0 #000,  /* top-right */
        -2px  2px 0 #000,  /* bottom-left */
        2px  2px 0 #000,  /* bottom-right */
        4px  4px 6px rgba(0,0,0,0.6); /* actual shadow */
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(129, 185, 240, 0.552) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
    z-index: 0;
}

.hero-wrapper {
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.hero-img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(102, 201, 232, 0.3);
    animation: slideInLeft 0.8s ease;
    object-fit: cover;
    max-height: 500px;
}

.hero-content {
    flex: 1;
    position: relative;
    z-index: 1;
    max-width: 600px;
    text-align: left;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: slideDown 0.8s ease;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    color: #d3af6d;
    text-shadow: none;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    color: #1a1a1a;
    font-weight: 400;
    letter-spacing: 0.5px;
    animation: fadeIn 0.8s ease 0.2s both;
}

.hero .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
    animation: fadeIn 0.8s ease 0.4s both;
}

.call-to-action {
    background: #202647;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

/* ====== Container & Sections ====== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    transition: all 0.3s ease;
}

section:nth-child(even) {
    background: #f8f9fa;
}

.section-alt-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #111111;
    position: relative;
    padding-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    transition: all 0.3s ease;
}

.section-alt-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #66c9e8;
    border-radius: 2px;
    transition: width 0.4s ease;
}

section:hover .section-alt-title::after {
    width: 140px;
}

.section-alt-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #111111;
    position: relative;
    padding-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    transition: all 0.3s ease;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #d3af6d;
    border-radius: 2px;
    transition: width 0.4s ease;
}

section:hover .section-title::after {
    width: 140px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* ====== Card Grid ====== */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}

.card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    border: 3px solid #d3af6d;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(211, 175, 109, 0.3);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #d3af6d;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.card:hover {
    border-color: #d3af6d;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(211, 175, 109, 0.3);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #d3af6d;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(211, 175, 109, 0.3);
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(211, 175, 109, 0.6);
}

.card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.card h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background: #d3af6d;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.card:hover h3 {
    color: var(--secondary-color);
}

.card:hover h3::after {
    width: 100%;
}

.card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 400;
}

/* ====== Features Section ====== */
.feature-number {
    min-width: 80px;
    width: 80px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);

    background: #d3af6d;
    border-radius: 16px;

    box-shadow: var(--shadow-md);
    flex-shrink: 0;

    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* subtle light reflection */
.feature-number::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.35), transparent);
}

/* hover effect */
.feature-item:hover .feature-number {
    transform: translateY(-6px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* ====== Feature Content Wrapper ====== */
.feature-content {
    max-width: 600px;
}

/* ====== Feature List Styling ====== */
.feature-list {
    margin-top: 0.8rem;
    padding-left: 1.2rem;
}

.feature-list li {
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
}

/* custom bullet */
.feature-list li::marker {
    color: var(--accent-color);
}


/* ===================================================== */
/* ====== NEW: Timeline Layout Upgrade ====== */
/* ===================================================== */

.timeline {
    position: relative;
    margin-top: 4rem;
}

/* vertical line */
.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(0, 0, 0, 0.08);
    transform: translateX(-50%);
}

/* timeline item base */
.timeline-item {
    position: relative;
    width: 50%;
    padding: 2rem;
}

/* left side */
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

/* right side */
.timeline-item:nth-child(even) {
    left: 50%;
}

/* timeline number */
.timeline-number {
    position: absolute;
    top: 2rem;
    left: 100%;
    transform: translate(-50%, 0);

    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);

    background: #d3af6d;
    border-radius: 50%;

    box-shadow: var(--shadow-md);
    z-index: 2;
    transition: 0.3s ease;
}

/* flip number for right side */
.timeline-item:nth-child(even) .timeline-number {
    left: 0;
    transform: translate(-50%, 0);
}

/* content card */
.timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: 0.3s ease;
}

/* hover effect */
.timeline-item:hover .timeline-content {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* headings + text */
.timeline-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ====== Mobile Fix ====== */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        text-align: left !important;
        left: 0 !important;
    }

    .timeline-number {
        left: 20px !important;
        transform: translate(-50%, 0);
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }
}

/* ====== Core Business Section ====== */
.core-business {
    padding: 4rem 0;
}

/* grid layout */
.core-business-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

/* card style */
.core-business-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;

    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;

    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* subtle gradient border glow */
.core-business-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: #66c9e8;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

/* hover effect */
.core-business-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* content */
.core-business-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.core-business-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* improve icon look */
.core-business-card .icon-wrapper {
    min-width: 60px;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    font-size: 1.4rem;
}

/* mobile */
@media (max-width: 768px) {
    .core-business-grid {
        grid-template-columns: 1fr;
    }
}

/* ====== Core Values Section ====== */
.core-values {
    padding: 4rem 0;
}

/* grid layout */
.core-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

/* card style */
.core-values-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;

    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;

    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* subtle gradient border glow */
.core-values-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: #66c9e8;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

/* hover effect */
.core-values-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* content */
.core-values-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.core-values-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* improve icon look */
.core-values-card .icon-wrapper {
    min-width: 60px;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    font-size: 1.4rem;
}

/* mobile */
@media (max-width: 768px) {
    .core-values-grid, .core-values-grid2 {
        grid-template-columns: 1fr;
    }
}

/* ====== Why Choose Us Section ====== */
.why-us {
    padding: 4rem 0;
}

/* grid layout */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 2rem auto 0;
}

/* card style */
.why-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;

    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;

    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* subtle gradient border glow */
.why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: #d3af6d;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

/* hover effect */
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* content */
.why-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.why-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* improve icon look */
.why-card .icon-wrapper {
    min-width: 60px;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    font-size: 1.4rem;
}

/* mobile */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ====== Responsive Fix ====== */
@media (max-width: 768px) {
    .feature-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .feature-number {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
}

/* ====== Form Styles ====== */
.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 201, 232, 0.15);
    transition: all 0.3s ease;
}

.form-container:hover {
    box-shadow: 0 12px 40px rgba(102, 201, 232, 0.15);
}

@media (min-width: 1024px) {
    .form-container {
        max-width: 800px;
        padding: 3rem;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #66c9e8;
    box-shadow: 0 0 0 4px rgba(102, 201, 232, 0.15);
    background: #ffffff;
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group select {
    cursor: pointer;
}

/* ====== Footer ====== */
footer {
    background: #111111;
    color: var(--white);
    padding: 4rem 0 1rem;
    margin-top: 0;
    position: relative;
    border-top: 1px solid #d3af6d;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #d3af6d;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #d3af6d;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-section {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #d3af6d;
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(102, 201, 232, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--accent-color);
}

/* ====== Animations ====== */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* AOS - Animate On Scroll */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 600ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos][data-aos="fade-up"] {
    transform: translate3d(0, 40px, 0);
}

[data-aos][data-aos="fade-up"].aos-animate {
    transform: translate3d(0, 0, 0);
}

[data-aos][data-aos="fade-down"] {
    transform: translate3d(0, -40px, 0);
}

[data-aos][data-aos="fade-down"].aos-animate {
    transform: translate3d(0, 0, 0);
}

[data-aos][data-aos="fade-left"] {
    transform: translate3d(40px, 0, 0);
}

[data-aos][data-aos="fade-left"].aos-animate {
    transform: translate3d(0, 0, 0);
}

[data-aos][data-aos="fade-right"] {
    transform: translate3d(-40px, 0, 0);
}

[data-aos][data-aos="fade-right"].aos-animate {
    transform: translate3d(0, 0, 0);
}

[data-aos][data-aos="zoom-in"] {
    transform: scale3d(0.9, 0.9, 0.9);
}

[data-aos][data-aos="zoom-in"].aos-animate {
    transform: scale3d(1, 1, 1);
}

[data-aos][data-aos="flip-left"] {
    transform: perspective(2500px) rotateY(75deg);
    opacity: 0;
}

[data-aos][data-aos="flip-left"].aos-animate {
    transform: perspective(2500px) rotateY(0);
    opacity: 1;
}

/* Floating Elements */
.float {
    animation: floating 3s ease-in-out infinite;
}

.float-delay-1 {
    animation-delay: 0s;
}

.float-delay-2 {
    animation-delay: 0.5s;
}

.float-delay-3 {
    animation-delay: 1s;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.float-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: floating 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.float-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.float-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    bottom: -50px;
    left: -50px;
    animation-delay: 2s;
}

.float-shape-3 {
    width: 250px;
    height: 250px;
    background: var(--success-color);
    top: 50%;
    left: 10%;
    animation-delay: 4s;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-30px) translateX(20px);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(102, 201, 232, 0.5), 0 0 10px rgba(211, 175, 109, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(102, 201, 232, 0.8), 0 0 30px rgba(211, 175, 109, 0.5);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(102, 201, 232, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(102, 201, 232, 0.8), 0 0 30px rgba(211, 175, 109, 0.5);
    }
}

/* ====== Responsive Design ====== */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .nav-links {
        gap: 2rem;
    }
}

    @media (max-width: 768px) {
    .navbar {
        padding: 0 1rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        flex-direction: column;
        background: #ffffff;
        gap: 0;
        display: none;
        padding: 0;
        border-bottom: 1px solid #e2e8f0;
        z-index: 999;
        overflow-y: auto;
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid #e2e8f0;
        transition: all 0.3s ease;
    }

    .nav-links li:hover {
        background: #f8f9fa;
    }

    .nav-links a {
        display: flex;
        align-items: center;
        padding: 1.25rem 2rem;
        border: none;
        color: #111111;
        font-size: 1.05rem;
        font-weight: 600;
        background: transparent;
        box-shadow: none !important;
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-links a::before {
        display: none;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        width: 4px;
        height: 0;
        background: #d3af6d;
        transform: translateY(-50%);
        transition: height 0.3s ease;
        border-radius: 0 2px 2px 0;
    }

    .nav-links a:hover,
    .nav-links a.active {
        /*color: #d3af6d;*/
        color: #66c9e8;
        padding-left: 2.5rem;
        background: rgba(211, 175, 109, 0.1);
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
        height: 100%;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 3rem 2rem;
        min-height: auto;
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero::before,
    .hero::after {
        width: 250px;
        height: 250px;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-img {
        max-width: 100%;
        max-height: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Responsive grid layout for about/services with images */
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    div[style*="grid-template-columns: 1fr 1fr"] img {
        width: 100% !important;
        max-height: 300px !important;
    }

    @media(max-width: 768px){
        .grid .card {
            width: 100%;
        }    
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card {
        padding: 1.5rem;
    }

    .card img {
        height: 150px !important;
        margin-bottom: 1rem !important;
        object-fit: cover;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 1rem;
    }

    .feature-item img {
        max-width: 100%;
        height: auto;
        width: 100px !important;
        height: 100px !important;
    }

    section {
        padding: 4rem 0;
    }

    .btn {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        margin: 0.25rem 0;
    }

    .card {
        padding: 1.5rem;
    }

    .nav-links {
        gap: 0;
    }

    .logo {
        font-size: 1.25rem;
    }

    .details-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }

        .details-modal.show {
            display: flex;
        }

        .details-modal-content {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            animation: slideUp 0.3s ease;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .details-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #d3af6d;
        }

        .details-modal-header h2 {
            margin: 0;
            color: var(--text-primary);
        }
}
