/* ========== CSS RESET & DESIGN SYSTEM ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-navy: #0B1E33;
    --slate: #1E2F41;
    --teal-bright: #2A9D8F;
    --sunset: #E76F51;
    --warm-glow: #F4A261;
    --pure-white: #FFFFFF;
    --off-white: #F9FBFD;
    --light-gray: #EFF3F8;
    --gray-mid: #5C6F87;
    --shadow-sm: 0 12px 28px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.01);
    --shadow-md: 0 20px 32px -12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 30px 40px -18px rgba(0, 0, 0, 0.12);
    --border-glass: 1px solid rgba(255, 255, 255, 0.2);
    --radius-card: 28px;
    --radius-element: 60px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--off-white);
    color: var(--deep-navy);
    scroll-behavior: smooth;
    line-height: 1.5;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 32px;
}

/* custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--light-gray);
}
::-webkit-scrollbar-thumb {
    background: var(--teal-bright);
    border-radius: 20px;
}

/* ========== HEADER ========== */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.02);
    z-index: 1100;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(42, 157, 143, 0.15);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.9rem;
    font-weight: 800;
    text-decoration: none;
    background: linear-gradient(130deg, var(--deep-navy) 20%, var(--teal-bright) 80%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
}

.logo span {
    background: linear-gradient(135deg, var(--sunset), var(--warm-glow));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    gap: 2.8rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-weight: 550;
    color: var(--slate);
    transition: all 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2.5px;
    bottom: -6px;
    left: 0;
    background: var(--teal-bright);
    border-radius: 3px;
    transition: 0.25s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* mobile menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1150;
}
.hamburger span {
    width: 28px;
    height: 2.5px;
    background: var(--deep-navy);
    border-radius: 3px;
    transition: 0.2s;
}
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 30, 51, 0.98);
    backdrop-filter: blur(12px);
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.mobile-menu-overlay.active {
    visibility: visible;
    opacity: 1;
}
.overlay-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}
.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    transition: transform 0.2s;
}
.mobile-nav-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.mobile-nav-links a {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    letter-spacing: -0.3px;
}

/* ========== HERO ========== */
/* Hero Section - Modern Redesign */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgb(11, 30, 51) 0%, rgba(42, 157, 144, 0.945) 100%), url('images/hero-bg.jpg') center/cover fixed no-repeat;
    background-blend-mode: overlay;
    color: white;
    overflow: hidden;
}

/* animated particles effect */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 40%, rgba(255,255,255,0.08) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    pointer-events: none;
    animation: floatParticles 20s linear infinite;
}

@keyframes floatParticles {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 100px 100px, 150px 80px;
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #F4A261;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-main {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-line {
    display: block;
    color: white;
}

.hero-gradient-text {
    display: block;
    background: linear-gradient(120deg, #F4A261, #E76F51);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-buttons-group {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #E76F51;
    color: white;
    box-shadow: 0 8px 20px rgba(231,111,81,0.35);
    border: none;
}

.btn-primary:hover {
    background: #d95b3c;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(231,111,81,0.45);
}

.btn-primary i {
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.btn-primary:hover i {
    transform: translateX(3px);
}

.btn-outline {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255,255,255,0.35);
    color: white;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    border-color: #F4A261;
}

.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #F4A261;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: rgba(255,255,255,0.2);
}

/* Hero Visual Side */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.hero-icon-ring {
    width: 180px;
    height: 180px;
    background: rgba(244,162,97,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(244,162,97,0.5);
    backdrop-filter: blur(8px);
    animation: floatRing 3s ease-in-out infinite;
}

.hero-icon-ring i {
    font-size: 4rem;
    color: #F4A261;
}

@keyframes floatRing {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.02); }
}

.floating-card {
    position: absolute;
    background: rgba(11,30,51,0.9);
    backdrop-filter: blur(12px);
    padding: 10px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(244,162,97,0.3);
    white-space: nowrap;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card i {
    color: #F4A261;
    font-size: 1rem;
}

.floating-card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Wave bottom */
.hero-wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    pointer-events: none;
}

.hero-wave-bottom svg {
    width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 3.2rem;
    }
    
    .hero-description p {
        max-width: 100%;
    }
    
    .hero-buttons-group {
        justify-content: center;
    }
    
    .hero-stats-row {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-badge {
        margin: 0 auto 2rem auto;
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats-row {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-stats-row {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .stat-divider {
        display: none;
    }
}

/* sections */
section {
    padding: 6rem 0;
}
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-header h2 {
    font-size: 2.7rem;
    font-weight: 700;
    background: linear-gradient(125deg, var(--deep-navy), var(--teal-bright));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 0.75rem;
}
.section-header p {
    font-size: 1.1rem;
    color: var(--gray-mid);
}

/* WHY CHOOSE CARDS (modern) */
/* Why Choose Us Section - Modern Redesign (3 Cards) */
.why-choose {
    padding: 5rem 0;
    background: linear-gradient(165deg, #F8FAFE 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

/* subtle background pattern */
.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 40%, rgba(42,157,143,0.03) 2px, transparent 2px);
    background-size: 40px 40px;
    pointer-events: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

/* Modern Grid Layout - 3 columns exactly */
.cards-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Modern Card Design */
.feature-card-modern {
    position: relative;
    background: white;
    padding: 2.8rem 2rem;
    border-radius: 32px;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(42, 157, 143, 0.1);
}

/* Glow effect on hover */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2A9D8F, #E76F51, #F4A261);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(42, 157, 143, 0.3);
}

.feature-card-modern:hover .card-glow {
    opacity: 1;
}

/* Icon Styling */
.card-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.12), rgba(231, 111, 81, 0.08));
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    transition: all 0.3s ease;
}

.card-icon-modern i {
    font-size: 2.5rem;
    color: #2A9D8F;
    transition: all 0.3s ease;
}

.feature-card-modern:hover .card-icon-modern {
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.2), rgba(231, 111, 81, 0.15));
}

.feature-card-modern:hover .card-icon-modern i {
    color: #E76F51;
    transform: scale(1.08);
}

/* Typography */
.feature-card-modern h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0B1E33;
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.feature-card-modern p {
    font-size: 1rem;
    line-height: 1.6;
    color: #5C6F87;
    margin-bottom: 1.5rem;
}

/* Arrow indicator */
.card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2A9D8F;
    opacity: 0;
    transform: translateX(-12px);
    transition: all 0.3s ease;
}

.card-arrow i {
    font-size: 0.8rem;
    transition: transform 0.2s;
}

.feature-card-modern:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.feature-card-modern:hover .card-arrow i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1100px) {
    .cards-grid-modern {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .feature-card-modern {
        padding: 2rem 1.5rem;
    }
    
    .feature-card-modern h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 900px) {
    .cards-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .why-choose {
        padding: 3rem 0;
    }
    
    .cards-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .feature-card-modern {
        padding: 1.8rem 1.5rem;
    }
    
    .card-icon-modern {
        width: 65px;
        height: 65px;
        margin-bottom: 1.2rem;
    }
    
    .card-icon-modern i {
        font-size: 2rem;
    }
    
    .feature-card-modern h3 {
        font-size: 1.3rem;
    }
    
    .feature-card-modern p {
        font-size: 0.95rem;
    }
    
    .card-arrow {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .feature-card-modern {
        padding: 1.5rem 1.2rem;
    }
}
/* about split */
/* About Us Section - Modern Redesign */
.about {
    padding: 6rem 0;
    background: linear-gradient(120deg, #FFFFFF 0%, #F9FBFF 100%);
    position: relative;
    overflow: hidden;
}

/* subtle background decoration */
.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(42,157,143,0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(231,111,81,0.02) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.about-wrapper {
    display: flex;
    justify-content: center;
}

/* Main Card Container */
.about-card {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    background: white;
    border-radius: 48px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(42, 157, 143, 0.12);
    transition: all 0.3s ease;
}

/* Image Side */
.about-image-modern {
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.image-frame {
    height: 100%;
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-card:hover .image-frame img {
    transform: scale(1.03);
}

.image-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 0.8rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
}

.image-tag i {
    color: #F4A261;
}

/* Content Side */
.about-content {
    padding: 3rem 3rem 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #2A9D8F;
    text-transform: uppercase;
}

.badge-icon {
    font-size: 1rem;
    color: #E76F51;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0B1E33;
    letter-spacing: -0.02em;
    margin: 0;
}

.about-intro {
    font-size: 1rem;
    line-height: 1.65;
    color: #5C6F87;
    margin: 0.5rem 0;
}

.about-intro strong {
    color: #2A9D8F;
    font-weight: 700;
}

/* Location Block */
.about-location {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(42, 157, 143, 0.1);
    border-bottom: 1px solid rgba(42, 157, 143, 0.1);
}

.about-location i {
    font-size: 1.4rem;
    color: #E76F51;
    background: rgba(231,111,81,0.1);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}

.about-location div {
    display: flex;
    flex-direction: column;
}

.location-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2A9D8F;
    font-weight: 600;
}

.location-name {
    font-size: 1rem;
    font-weight: 600;
    color: #0B1E33;
}

/* Features Grid */
.about-features-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #F8FAFE;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #0B1E33;
}

.feature-item i {
    color: #2A9D8F;
    font-size: 0.85rem;
}

/* Buttons */
.about-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #E76F51, #F4A261);
    color: white;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(231,111,81,0.3);
}

.btn-phone i {
    font-size: 1rem;
}

.btn-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(231,111,81,0.4);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    color: #2A9D8F;
    border-bottom: 2px solid #2A9D8F;
    padding-bottom: 4px;
    transition: all 0.2s ease;
}

.btn-link i {
    font-size: 0.8rem;
    transition: transform 0.2s;
}

.btn-link:hover {
    gap: 12px;
    color: #E76F51;
    border-bottom-color: #E76F51;
}

.btn-link:hover i {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1000px) {
    .about-card {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .about-image-modern {
        min-height: 350px;
    }
    
    .about-content {
        padding: 2rem;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 0;
    }
    
    .about-content {
        padding: 1.8rem;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .about-features-modern {
        gap: 0.8rem;
    }
    
    .feature-item {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .btn-phone {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .about-content h2 {
        font-size: 1.5rem;
    }
    
    .about-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-phone, .btn-link {
        justify-content: center;
    }
    
    .about-features-modern {
        flex-direction: column;
    }
    
    .feature-item {
        justify-content: center;
    }
}
/* SERVICES GRID premium */
/* Services Section - Modern Redesign */
.services {
    padding: 6rem 0;
    background: linear-gradient(165deg, #F5F7FC 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

/* background decorative elements */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(42,157,143,0.2), transparent);
}

.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(231,111,81,0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

/* Header Styling */
.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(42, 157, 143, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #2A9D8F;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.tag-dot {
    width: 6px;
    height: 6px;
    background: #E76F51;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.services-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0B1E33;
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.services-header h2 span {
    color: #2A9D8F;
    position: relative;
    display: inline-block;
}

.services-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(42, 157, 143, 0.2);
    border-radius: 4px;
    z-index: -1;
}

.services-header p {
    font-size: 1.1rem;
    color: #5C6F87;
    max-width: 550px;
    margin: 0 auto;
}

/* Modern Grid Layout */
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Modern Service Card */
.service-card-modern {
    background: white;
    border-radius: 32px;
    padding: 2rem;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(42, 157, 143, 0.08);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    gap: 1.2rem;
    cursor: pointer;
}

.service-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(42, 157, 143, 0.25);
}

/* Icon Wrapper */
.service-icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.12), rgba(231, 111, 81, 0.08));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-icon-wrapper i {
    font-size: 1.8rem;
    color: #2A9D8F;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-wrapper {
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.2), rgba(231, 111, 81, 0.15));
}

.service-card-modern:hover .service-icon-wrapper i {
    color: #E76F51;
    transform: scale(1.05);
}

/* Service Info */
.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0B1E33;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.service-info p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #5C6F87;
    margin-bottom: 1rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2A9D8F;
    text-decoration: none;
    transition: all 0.2s ease;
}

.service-link:hover {
    gap: 10px;
    color: #E76F51;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 4rem 0;
    }
    
    .services-header h2 {
        font-size: 2rem;
    }
    
    .services-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .service-card-modern {
        padding: 1.5rem;
    }
    
    .service-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .service-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .service-info h3 {
        font-size: 1.2rem;
    }
    
    .service-info p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .service-card-modern {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon-wrapper {
        margin: 0 auto;
    }
    
    .service-link {
        justify-content: center;
    }
}

/* contact */
/* Contact Section - Fresh Modern Layout */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FAFCFE 0%, #FFFFFF 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path fill="none" d="M20,20 L80,20 M20,40 L80,40 M20,60 L80,60 M20,80 L80,80 M40,20 L40,80 M60,20 L60,80" stroke="%232A9D8F" stroke-width="1"/></svg>');
    background-size: 60px 60px;
    pointer-events: none;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

/* Main Container - Two Column Layout */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    border-radius: 48px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(42, 157, 143, 0.1);
}

/* Left Panel */
.contact-info-panel {
    padding: 3rem;
    background: #FFFFFF;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.info-dot {
    width: 8px;
    height: 8px;
    background: #2A9D8F;
    border-radius: 50%;
    display: inline-block;
}

.info-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2A9D8F;
}

.contact-info-panel h2 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0B1E33;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.contact-info-panel > p {
    font-size: 1rem;
    color: #5C6F87;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Contact Details */
.contact-details-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(42, 157, 143, 0.08);
}

.detail-icon {
    width: 44px;
    height: 44px;
    background: rgba(42, 157, 143, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon i {
    font-size: 1.2rem;
    color: #2A9D8F;
}

.detail-text h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: #2A9D8F;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.detail-text a {
    font-size: 1rem;
    font-weight: 500;
    color: #0B1E33;
    text-decoration: none;
    transition: color 0.2s ease;
}

.detail-text a:hover {
    color: #E76F51;
}

.detail-text p {
    font-size: 0.95rem;
    color: #0B1E33;
    line-height: 1.4;
}

/* Right Panel */
.contact-ways-panel {
    padding: 3rem;
    background: linear-gradient(145deg, #F8FBFE 0%, #FFFFFF 100%);
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.ways-card {
    background: white;
    padding: 1.5rem;
    border-radius: 24px;
    transition: all 0.3s ease;
    border: 1px solid rgba(42, 157, 143, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.ways-card:hover {
    transform: translateX(6px);
    border-color: rgba(42, 157, 143, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.ways-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.12), rgba(231, 111, 81, 0.06));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.ways-icon i {
    font-size: 1.4rem;
    color: #2A9D8F;
}

.ways-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0B1E33;
    margin-bottom: 0.5rem;
}

.ways-card p {
    font-size: 0.9rem;
    color: #5C6F87;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 950px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 0;
        border-radius: 32px;
    }
    
    .contact-info-panel {
        padding: 2rem;
    }
    
    .contact-ways-panel {
        padding: 2rem;
    }
    
    .contact-info-panel h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .contact-info-panel {
        padding: 1.8rem;
    }
    
    .contact-ways-panel {
        padding: 1.8rem;
    }
    
    .contact-info-panel h2 {
        font-size: 1.6rem;
    }
    
    .detail-row {
        gap: 0.8rem;
    }
    
    .detail-icon {
        width: 38px;
        height: 38px;
    }
    
    .detail-icon i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-info-panel h2 {
        font-size: 1.4rem;
    }
    
    .contact-info-panel > p {
        font-size: 0.9rem;
    }
    
    .ways-card {
        padding: 1.2rem;
    }
    
    .ways-card h3 {
        font-size: 1.1rem;
    }
    
    .ways-card p {
        font-size: 0.85rem;
    }
}

/* footer */
.site-footer {
    background: #0A1824;
    color: #B9C7D9;
    padding: 3rem 0 2rem;
}
.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    text-align: center;
}
.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #AAD9D1, #F4A261);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.footer-links a {
    color: #C9DAF0;
    text-decoration: none;
    font-weight: 500;
}

/* responsive */
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 2.8rem; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .container { padding: 0 25px; }
    section { padding: 4rem 0; }
    .section-header h2 { font-size: 2rem; }
    .hero h1 { font-size: 2.4rem; }
    .service-card { text-align: center; align-items: center; }
    .service-card i { margin: 0 auto 1rem; }
}
@media (max-width: 480px) {
    .hero-buttons .btn { padding: 0.7rem 1.4rem; font-size: 0.9rem; }
}
html {
    scroll-padding-top: 95px;
}