/* Variables & Reset */
:root {
    --primary-color: #004E98; /* Lighter professional blue */
    --secondary-color: #3A6EA5;
    --accent-color: #c5a47e; /* Gold/Bronze tone for luxury feel */
    --text-light: #f4f4f4;
    --text-dark: #333333;
    --text-gray: #666666;
    --white: #ffffff;
    --off-white: #fdfcf7; /* Creamy off-white */
    --light-bg: #f7f5f0; /* Slightly darker cream for backgrounds */
    --transition: all 0.3s ease;
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1); /* Subtle depth for headings */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header {
    margin-bottom: 4rem;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.9rem;
    /* Base 3D properties */
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(145deg, #d4b38d, #b6956f); /* Gradient for volume */
    color: var(--white);
    border: none;
    /* 3D Bevel and Shadow */
    box-shadow: 
        0 4px 15px rgba(197, 164, 126, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.4), /* Top highlight */
        inset 0 -1px 0 rgba(0,0,0,0.1); /* Bottom shadow */
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background: linear-gradient(145deg, #c5a47e, #a88863);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(197, 164, 126, 0.6),
        inset 0 1px 0 rgba(255,255,255,0.4);
    color: var(--white);
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 
        0 2px 5px rgba(197, 164, 126, 0.4),
        inset 0 2px 5px rgba(0,0,0,0.2); /* Inner shadow when pressed */
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.8);
    margin-left: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(255,255,255,0.3);
    border-color: var(--white);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 78, 152, 0.95);
    padding: 0.5rem 0; /* Reduced padding slightly to accommodate larger logo */
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1); /* Ensure white logo */
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--accent-color);
    padding-left: 10px;
}

.wordmark-stack {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.wordmark-line {
    display: block;
    width: 130px;
    height: auto;
}

.logo-text .logo-wordmark {
    display: block;
    height: 25px !important; /* 50% of the 50px logo icon */
    width: auto !important;
    margin-top: 0;
}

.logo-main {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1;
}

.logo-sub {
    font-family: var(--font-main);
    color: var(--accent-color);
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

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

.btn-nav {
    background-color: var(--accent-color);
    padding: 0.5rem 1.5rem !important;
    border-radius: 50px;
}

.btn-nav:hover {
    background-color: #b08d65;
}

.btn-nav::after {
    display: none;
}

.nav-socials {
    display: flex;
    gap: 15px;
    margin-left: 10px;
    border-left: 1px solid rgba(255,255,255,0.2);
    padding-left: 20px;
}

.nav-socials a {
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition);
}

.nav-socials a::after {
    display: none; /* Disable underline effect for icons */
}

.nav-socials a:hover {
    color: var(--accent-color);
    opacity: 1;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.1);
    animation: zoomEffect 20s infinite alternate;
}

@keyframes zoomEffect {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 78, 152, 0.85), rgba(0, 78, 152, 0.7));
    z-index: -1;
}

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-brand-area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
}

.hero-big-logo {
    height: 220px;
    width: auto;
    filter: brightness(0) invert(1);
}

.hero-brand-text {
    text-align: left;
    border-left: 3px solid var(--accent-color);
    padding-left: 2rem;
}

.hero-brand-text.wordmark-stack {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items relative to each other */
}

.hero-brand-text.wordmark-stack .wordmark-line:first-child {
    width: 280px; /* Iatrhos keeps normal size */
}

.hero-brand-text.wordmark-stack .wordmark-line:last-child {
    width: 230px; /* Reduced by 10% from 255px, centered via flex align-items */
}

.brand-main {
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 0.9;
    color: var(--white);
}

.brand-sub {
    font-family: var(--font-main);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--accent-color);
    margin-top: 10px;
}

.hero-text-area {
    text-align: left;
}

.hero-text-area h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.highlight {
    color: var(--accent-color);
    font-style: italic;
}

.hero-text-area p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 0 2.5rem 0;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    align-items: center;
}

/* About Section */
.about {
    background-color: var(--off-white);
    position: relative;
    overflow: hidden;
    /* Richer, deeper mesh gradient with more variation */
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(197, 164, 126, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(0, 78, 152, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.9) 0%, transparent 60%),
        linear-gradient(120deg, rgba(245, 245, 245, 0.6) 0%, rgba(230, 230, 230, 0.6) 100%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    background-size: 100% 100%;
}

/* Decorative background elements for depth */
.about::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 164, 126, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(40px);
}

.about::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 78, 152, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(40px);
}

.about-content-flow {
    display: block;
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
    float: left;
    width: 58%; /* Increased size */
    margin-right: 3rem;
    margin-bottom: 1.5rem;
    border-radius: 20px;
    /* Enhanced 3D Depth */
    box-shadow: 
        25px 25px 70px rgba(0,0,0,0.18),
        -20px -20px 60px rgba(255,255,255,0.9),
        inset 0 0 0 2px rgba(255,255,255,0.5); /* Subtle border highlight */
    transform: perspective(1500px) rotateY(4deg) rotateX(2deg); /* Stronger perspective */
    transition: all 0.5s ease;
    z-index: 2;
    background: white; /* Ensure no transparency issues */
    padding: 10px; /* Frame effect */
}

.about-image img {
    border-radius: 15px; /* Inner radius matching frame */
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* Inner shadow for image */
}

.about-image:hover {
    transform: perspective(1500px) rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow: 
        15px 15px 40px rgba(0,0,0,0.15),
        -10px -10px 40px rgba(255,255,255,0.8);
}

.about-text {
    /* Text flows around */
    position: relative;
    z-index: 1;
}

.about-text .lead {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-shadow: 1px 1px 0 rgba(255,255,255,0.5); /* Subtle text depth */
}

/* Clearfix for smaller screens */
.about-content-flow::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        width: 100%;
        float: none;
        margin-right: 0;
        margin-bottom: 2rem;
        transform: none;
    }
}

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

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

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

/* Mini Cards for Values */
.values-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    padding: 0;
    list-style: none;
}

.values-cards li {
    background: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px; /* Pill shape for mini-cards */
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
    flex: 1 1 auto;
    justify-content: center;
    min-width: 120px;
    text-align: center;
}

.values-cards li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
    background: #ffffff;
}

.values-cards i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* Removed duplicate styles */

/* Services Section */
.services {
    background-color: var(--light-bg);
    /* Intensified Soft Geometric Layers */
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255,255,255,1) 0%, rgba(235,237,240,0.5) 80%),
        repeating-linear-gradient(45deg, rgba(0, 78, 152, 0.04) 0px, rgba(0, 78, 152, 0.04) 1px, transparent 1px, transparent 30px),
        repeating-linear-gradient(-45deg, rgba(0, 78, 152, 0.04) 0px, rgba(0, 78, 152, 0.04) 1px, transparent 1px, transparent 30px);
    box-shadow: inset 0 0 120px rgba(0,0,0,0.04);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    height: 100%;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    /* Exact Match to Visual Reference: Clean, subtle shadow */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    top: 0;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

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

.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Experience / Video Section */
.experience {
    background-color: var(--primary-color);
    /* Deep Underwater/Space Effect with Mesh */
    background-image: 
        radial-gradient(at 20% 20%, rgba(58, 110, 165, 0.4) 0%, transparent 50%),
        radial-gradient(at 80% 80%, rgba(0, 31, 63, 0.8) 0%, transparent 50%),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 40px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 40px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    color: var(--white);
    padding: 6rem 0;
    box-shadow: inset 0 0 200px rgba(0,0,0,0.6);
}

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

.experience .section-title {
    color: var(--white);
    text-align: left;
}

.video-placeholder {
    position: relative;
    display: flex;
    justify-content: center;
}

.vertical-video-container {
    width: 300px;
    height: 530px; /* 9:16 aspect ratio approx */
    background-color: #000;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: 4px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.vertical-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.video-controls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background-color: rgba(0,0,0,0.3);
    transition: var(--transition);
}

.video-controls.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 70px;
    height: 70px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.play-button:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(197, 164, 126, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(197, 164, 126, 0); }
    100% { box-shadow: 0 0 0 0 rgba(197, 164, 126, 0); }
}

/* Showcase */
.showcase {
    padding: 0;
}

.showcase-item {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

.showcase-item:hover img {
    transform: scale(1.05);
}

.showcase-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 78, 152, 0.9));
    color: var(--white);
}

/* Contact Section */
.contact {
    background-color: var(--off-white);
    /* Stronger Mesh Gradient Background */
    background-image: 
        radial-gradient(at 0% 100%, rgba(197, 164, 126, 0.15) 0%, transparent 60%),
        radial-gradient(at 100% 0%, rgba(0, 78, 152, 0.1) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
    background-size: 100% 100%, 100% 100%, auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    /* High Elevation Shadow (Clean) */
    box-shadow: 
        0 20px 50px -10px rgba(0,0,0,0.15),
        0 0 0 1px rgba(0,0,0,0.02);
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); /* Gradient background */
    color: var(--white);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    /* Inner shadow for recess effect */
    box-shadow: inset -5px 0 15px rgba(0,0,0,0.1);
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
}

.contact-info .section-title {
    color: var(--white);
    text-align: left;
    font-size: 2rem;
}

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

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 5px;
}

.info-item h4 {
    color: var(--white);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.info-item p {
    opacity: 0.8;
    font-size: 0.9rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.contact-form-container {
    padding: 3rem;
}

.medical-form h3 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e1e1e1;
    border-radius: 8px; /* Slightly more rounded */
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: var(--transition);
    background-color: #fcfcfc;
    /* Deeper Inner shadow for input field depth */
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.08);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: var(--white);
    /* Outer glow + Inner shadow */
    box-shadow: 
        0 0 0 3px rgba(197, 164, 126, 0.15),
        inset 0 1px 2px rgba(0,0,0,0.03);
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem;
    font-size: 1rem;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

/* Footer */
footer {
    background-color: #00284d;
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo img {
    height: 40px;
    margin: 0 auto 1rem;
}

.footer-links {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.copyright {
    opacity: 0.5;
    font-size: 0.8rem;
}

.legal-links {
    margin-top: 10px;
    font-size: 0.75rem;
    opacity: 0.6;
}

.legal-links a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--accent-color);
    text-decoration: underline;
    opacity: 1;
}

.legal-links .separator {
    margin: 0 10px;
    opacity: 0.5;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 2000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
    color: #fff;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-left, .reveal-right, .reveal-bottom {
    opacity: 1;
    transition: all 1s ease;
}

.js-active .reveal-left, .js-active .reveal-right, .js-active .reveal-bottom {
    opacity: 0;
}

.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-bottom { transform: translateY(50px); }

.js-active .reveal-active, .reveal-active {
    opacity: 1;
    transform: translate(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        padding-top: 80px;
        padding-bottom: 80px;
        height: auto;
        min-height: 100vh;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-brand-area {
        justify-content: center;
        flex-direction: column;
    }
    
    .hero-brand-text {
        border-left: none;
        border-top: 2px solid var(--accent-color);
        padding-left: 0;
        padding-top: 1rem;
        align-items: center;
        text-align: center;
    }

    .hero-text-area {
        text-align: center;
    }

    .hero-text-area h1 { font-size: 3rem; }
    
    .hero-text-area p {
        margin: 0 auto 2.5rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .experience-layout { grid-template-columns: 1fr; text-align: center; }
    .experience .section-title { text-align: center; }
    .stats-grid { justify-items: center; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-info::before { display: none; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    }

    .nav-socials {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-left: 0;
        padding-top: 20px;
        margin-left: 0;
        margin-top: 10px;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger { display: block; z-index: 1001; }
    
    .hero-text-area h1 { font-size: 2.5rem; }
    .hero-big-logo { height: 140px; }
    .brand-main { font-size: 3.5rem; }
    .brand-sub { font-size: 1rem; letter-spacing: 3px; }
    
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .section { padding: 3rem 0; }
}

/* Language Modal */
.lang-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.lang-modal.active {
    opacity: 1;
    visibility: visible;
}

.lang-modal-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.lang-modal.active .lang-modal-content {
    transform: translateY(0);
}

.lang-modal-logo {
    height: 60px;
    margin-bottom: 2rem;
}

.lang-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lang-btn {
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    background: transparent;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.lang-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

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

.lang-btn.primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Navbar Language Toggle */
.nav-lang-toggle {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.nav-lang-toggle:hover {
    background: white;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .nav-lang-toggle {
        margin: 1rem 0 0 0;
        width: 100%;
        text-align: center;
    }
}

/* FAQ Accordion Styles */
.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-color);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1rem;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}
