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

/* Base Styles */
:root {
    --primary-dark: #0f172a;
    --primary-darker: #020617;
    --primary-blue: #1e40af;
    --secondary-blue: #3b82f6;
    --accent-blue: #60a5fa;
    --accent-cyan: #22d3ee;
    --accent-purple: #a855f7;
    --light-blue: #dbeafe;
    --white: #ffffff;
    --off-white: #f8fafc;
    --gray: #94a3b8;
    --light-gray: #cbd5e1;
    --dark-gray: #334155;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    --gradient-secondary: linear-gradient(135deg, #22d3ee 0%, #60a5fa 50%, #a855f7 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--primary-dark);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Josefin Slab', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

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

/* Typography */
.highlight {
    color: var(--accent-blue);
    position: relative;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--accent-blue);
    margin: 1.5rem 0 2rem 0;
    border-radius: 2px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--white);
}

/* Header & Navigation */
.navbar {
    background-color: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(25px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(96, 165, 250, 0.15);
}

.navbar.scrolled {
    padding: 1rem 0;
    background-color: rgba(15, 23, 42, 0.99);
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 1.2rem 0;
    }
    
    .navbar.scrolled {
        padding: 0.8rem 0;
    }
}

@media screen and (max-width: 480px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .navbar.scrolled {
        padding: 0.6rem 0;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-family: 'Josefin Slab', serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--white);
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.logo h2 span {
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.logo h2:hover span {
    color: var(--accent-cyan);
    text-shadow: 0 0 15px rgba(34, 211, 238, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Josefin Slab', serif;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-secondary);
    transition: all 0.4s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-cyan);
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
}

.nav-link:hover {
    transform: translateY(-3px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger:hover .bar:nth-child(1),
.hamburger:hover .bar:nth-child(3) {
    width: 25px;
}

.hamburger:hover .bar:nth-child(2) {
    width: 35px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Josefin Slab', serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.primary-btn {
    background: var(--secondary-blue);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.primary-btn:hover {
    background: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.6);
}

.secondary-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--accent-blue);
}

.secondary-btn:hover {
    background: rgba(96, 165, 250, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.3);
    border-color: var(--accent-cyan);
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    text-align: center;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
    padding-top: calc(90px + 2rem);
    padding-bottom: 2rem;
}

/* Hero Shapes and Floating Elements */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    background: var(--gradient-secondary);
    opacity: 0.08;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 8%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    right: 5%;
    animation-delay: 4s;
}

.floating-element {
    position: absolute;
    color: var(--accent-cyan);
    font-size: 2rem;
    opacity: 0.5;
    animation: float 4s ease-in-out infinite;
    z-index: 1;
}

.floating-1 {
    top: 20%;
    left: 15%;
    animation-delay: 1s;
}

.floating-2 {
    bottom: 25%;
    right: 20%;
    animation-delay: 3s;
}

.floating-3 {
    top: 60%;
    left: 10%;
    animation-delay: 5s;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    margin-bottom: 2rem;
    backdrop-filter: blur(15px);
    animation: fadeIn 1s ease-out 0.5s both;
}

.hero-badge span {
    color: var(--accent-cyan);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 58, 138, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    position: relative;
    padding: 2rem;
}

@media screen and (max-width: 768px) {
    .hero-content {
        padding: 1rem;
    }
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: fadeInDown 1s cubic-bezier(0.25, 0.8, 0.25, 1) 0.2s both;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-subtitles {
    margin: 2.5rem 0;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin: 1rem 0;
    animation: fadeInUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) 0.4s both;
    min-height: 1.8em;
    font-weight: 300;
    opacity: 0.95;
}

.hero-subtitle .typing-text {
    display: inline-block;
    overflow: hidden;
    border-right: 2px solid var(--accent-blue);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink 0.75s step-end infinite;
    animation-fill-mode: both;
    font-style: italic;
    font-weight: 300;
}

.hero-description {
    font-size: 1.25rem;
    margin: 2rem auto;
    opacity: 0.95;
    max-width: 700px;
    animation: fadeIn 1s cubic-bezier(0.25, 0.8, 0.25, 1) 0.8s both;
    line-height: 1.8;
    font-weight: 300;
}

.cta-buttons {
    margin-top: 3rem;
    animation: fadeIn 1s cubic-bezier(0.25, 0.8, 0.25, 1) 1.2s both;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    animation: fadeInUp 1s ease-out 1.5s both;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(30, 41, 59, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(96, 165, 250, 0.2);
    transition: var(--transition);
    min-width: 160px;
    box-shadow: var(--shadow-lg);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-cyan);
    background: rgba(30, 41, 59, 0.6);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Josefin Slab', serif;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

/* About Section */
.about-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 6rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e293b 100%);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.about-description {
    font-size: 1.15rem;
    margin: 1.5rem 0;
    opacity: 0.95;
    max-width: 900px;
    line-height: 1.8;
    font-weight: 300;
}

.team-section {
    margin-top: 5rem;
}

.team-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.team-member {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 20px;
    transition: var(--transition);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(96, 165, 250, 0.1);
    box-shadow: var(--shadow-lg);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(96, 165, 250, 0.3);
    background: rgba(30, 58, 138, 0.15);
}

.member-image {
    font-size: 4.5rem;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.team-member:hover .member-image {
    color: var(--accent-cyan);
    transform: scale(1.1);
}

.member-name {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.member-role {
    color: var(--accent-blue);
    font-style: italic;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.member-description {
    color: var(--light-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
    text-align: left;
    opacity: 0.9;
}

/* Services Section */
.services-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 6rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e293b 100%);
}

.services-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.services-description {
    font-size: 1.15rem;
    margin: 1.5rem auto 3rem;
    opacity: 0.95;
    max-width: 800px;
    line-height: 1.8;
    font-weight: 300;
}

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

.service-card {
    background: rgba(30, 41, 59, 0.4);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(96, 165, 250, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--shadow-lg);
}

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(96, 165, 250, 0.1);
    font-family: 'Josefin Slab', serif;
    line-height: 1;
    transition: var(--transition);
}

.service-card:hover .service-number {
    color: rgba(34, 211, 238, 0.2);
    transform: scale(1.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    transition: var(--transition);
    z-index: -1;
    opacity: 0;
    border-radius: 20px;
}

.service-card:hover::before {
    height: 100%;
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(96, 165, 250, 0.3);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--accent-blue);
    margin-bottom: 2rem;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.service-card:hover .service-icon {
    transform: scale(1.15);
    color: var(--accent-cyan);
}

.service-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-blue);
    border-radius: 2px;
}

.service-description {
    opacity: 0.95;
    margin-bottom: 2rem;
    transition: var(--transition);
    font-weight: 300;
    line-height: 1.7;
    font-size: 1.05rem;
}

.service-card:hover .service-description {
    opacity: 1;
}

.service-progress {
    margin-top: 2rem;
    height: 4px;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-secondary);
    border-radius: 2px;
    width: 0;
    transition: width 1s ease-out;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 100%;
    background: var(--accent-cyan);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent-cyan);
}

.service-card .progress-bar[data-progress="95"] { width: 95%; }
.service-card .progress-bar[data-progress="88"] { width: 88%; }
.service-card .progress-bar[data-progress="92"] { width: 92%; }
.service-card .progress-bar[data-progress="98"] { width: 98%; }
.service-card .progress-bar[data-progress="90"] { width: 90%; }
.service-card .progress-bar[data-progress="94"] { width: 94%; }

/* Specialization Styles */
.specialization-title {
    font-size: 2rem;
    margin: 3rem 0 1rem 0;
    text-align: center;
    font-weight: 600;
    color: var(--white);
}

.specialization-description {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Service Features */
.service-features {
    margin: 2rem 0;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(96, 165, 250, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--accent-blue);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(96, 165, 250, 0.1);
    border-left-color: var(--accent-cyan);
    transform: translateX(5px);
}

.feature-item i {
    color: var(--accent-blue);
    font-size: 1.1rem;
    min-width: 20px;
    transition: var(--transition);
}

.feature-item:hover i {
    color: var(--accent-cyan);
    transform: scale(1.1);
}

.feature-item span {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
}

/* USP Section */
.usp-section {
    margin: 4rem 0 2rem 0;
    display: flex;
    justify-content: center;
}

.usp-card {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 20px;
    padding: 3rem;
    max-width: 800px;
    width: 100%;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(96, 165, 250, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.usp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    z-index: -1;
}

.usp-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.usp-icon {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    background: rgba(34, 211, 238, 0.1);
    padding: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    height: 70px;
}

.usp-title {
    font-size: 1.8rem;
    margin: 0;
    font-weight: 600;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.usp-main {
    margin-bottom: 2.5rem;
}

.usp-question {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1.4;
}

.usp-description {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.95;
    font-weight: 300;
}

.benefits-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 600;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--accent-blue);
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(96, 165, 250, 0.15);
    transform: translateX(5px);
    border-left-color: var(--accent-cyan);
}

.benefit-item i {
    color: var(--accent-blue);
    font-size: 1.2rem;
    min-width: 20px;
    transition: var(--transition);
}

.benefit-item:hover i {
    color: var(--accent-cyan);
}

.benefit-item span {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

/* Clientele Section */
.clientele-section {
    margin: 4rem 0;
}

.clientele-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--white);
}

.clientele-description {
    font-size: 1.15rem;
    margin: 1.5rem auto 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    line-height: 1.7;
    font-weight: 300;
}

.clients-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.client-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem 2rem;
    background: rgba(30, 41, 59, 0.4);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(96, 165, 250, 0.15);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.client-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.05) 0%, rgba(34, 211, 238, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
}

.client-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(96, 165, 250, 0.3);
}

.client-item:hover::before {
    opacity: 1;
}

.client-icon {
    font-size: 2rem;
    color: var(--accent-blue);
    background: rgba(96, 165, 250, 0.1);
    padding: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
    transition: var(--transition);
}

.client-item:hover .client-icon {
    color: var(--accent-cyan);
    background: rgba(34, 211, 238, 0.15);
    transform: scale(1.1);
}

.client-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    font-family: 'Josefin Slab', serif;
    transition: var(--transition);
}

.client-item:hover .client-name {
    color: var(--accent-cyan);
}

.clients-center {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.client-center {
    max-width: 300px;
    background: rgba(30, 41, 59, 0.6);
    border: 2px solid rgba(96, 165, 250, 0.3);
    position: relative;
}

.client-center::before {
    opacity: 0.15;
}

.client-center:hover {
    border-color: rgba(34, 211, 238, 0.5);
    background: rgba(30, 41, 59, 0.8);
}

.clientele-footer {
    font-size: 1.05rem;
    margin-top: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 6rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e293b 100%);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.contact-description {
    font-size: 1.15rem;
    margin: 1.5rem auto 3rem;
    opacity: 0.95;
    max-width: 900px;
    line-height: 1.8;
    font-weight: 300;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: rgba(30, 58, 138, 0.1);
    padding: 1.5rem;
    border-radius: 14px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(96, 165, 250, 0.1);
    transition: var(--transition);
    text-align: left;
    box-shadow: var(--shadow-md);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(96, 165, 250, 0.3);
    background: rgba(30, 58, 138, 0.15);
}

.info-icon {
    font-size: 2rem;
    color: var(--accent-blue);
    min-width: 40px;
    transition: var(--transition);
}

.info-card:hover .info-icon {
    transform: scale(1.1);
    color: var(--accent-cyan);
}

.info-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.info-content h3::after {
    content: '';
    position: absolute;
    bottom: -0.3rem;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-blue);
}

.info-content p {
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 300;
}

.contact-form-wrapper {
    background: rgba(30, 41, 59, 0.5);
    padding: 1.8rem;
    border-radius: 14px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(96, 165, 250, 0.2);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    align-self: start;
    margin-top: 0;
    height: fit-content;
}

.contact-form-wrapper.compact-form {
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-md);
    height: fit-content;
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.form-header p {
    opacity: 0.95;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.5;
}

.form-header.compact-header {
    margin-bottom: 1.5rem;
}

.form-header.compact-header h2 {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
}

.form-header.compact-header p {
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-form {
    width: 100%;
}

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

.form-group {
    margin-bottom: 1.2rem;
    position: relative;
}

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

.form-row.compact-row {
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group.compact-group {
    margin-bottom: 1.2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Radio Group Styles */
.radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    align-items: center;
    justify-content: flex-start;
}

.radio-label {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    padding-left: 1.8rem;
    transition: var(--transition);
    font-size: 0.9rem;
    min-width: 100px;
}

.radio-label:hover {
    color: var(--accent-cyan);
}

.radio-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-custom {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    background-color: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(96, 165, 250, 0.2);
    border-radius: 50%;
    transition: var(--transition);
}

.radio-label:hover .radio-custom {
    border-color: var(--accent-blue);
}

.radio-label input:checked ~ .radio-custom {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
}

.radio-custom::after {
    content: "";
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
}

.radio-label input:checked ~ .radio-custom::after {
    display: block;
}

.radio-group.compact-radios {
    gap: 2rem;
    margin-top: 1rem;
    align-items: center;
    justify-content: flex-start;
}

.radio-label.compact-label {
    padding-left: 1.8rem;
    font-size: 0.9rem;
    min-width: 100px;
}

.radio-custom.compact-radio {
    height: 16px;
    width: 16px;
}

.radio-custom.compact-radio::after {
    width: 5px;
    height: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: none;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 10px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(96, 165, 250, 0.2);
    box-shadow: var(--shadow-sm);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(15, 23, 42, 0.95);
    border-color: var(--accent-cyan);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.form-group input:focus + .input-border,
.form-group textarea:focus + .input-border {
    width: 100%;
}

.input-border.compact-border {
    height: 1.5px;
}

.error-message {
    color: var(--error);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
    font-weight: 500;
}

.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    padding: 1.2rem 1.8rem;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    box-shadow: var(--shadow-xl);
    z-index: 10000;
    transform: translateX(150%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    max-width: 350px;
    backdrop-filter: blur(15px);
}

.notification--show {
    transform: translateX(0);
}

.notification--success {
    background: rgba(16, 185, 129, 0.9);
    border: 1px solid rgba(16, 185, 129, 0.5);
}

/* Enhanced WhatsApp Button */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 10px;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    transform: translateY(-2px);
}

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

.whatsapp-btn.compact-btn {
    padding: 0.9rem;
    font-size: 0.95rem;
    border-radius: 8px;
}

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

.notification--error {
    background: rgba(239, 68, 68, 0.9);
    border: 1px solid rgba(239, 68, 68, 0.5);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 5rem;
    background: rgba(30, 58, 138, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(96, 165, 250, 0.2);
    box-shadow: var(--shadow-lg);
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.cta-section h3::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-blue);
    border-radius: 3px;
}

.cta-section p {
    font-size: 1.1rem;
    margin: 2rem 0 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 300;
}

/* Footer Styles */
.footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 2rem 0 0;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-blue);
    font-weight: 600;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Josefin Slab', serif;
    font-weight: 700;
}

.footer-logo h2 span {
    color: var(--accent-blue);
}

.footer-logo p {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 300;
    max-width: 250px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 300;
    font-size: 0.95rem;
    display: block;
    padding: 0.2rem 0;
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    color: var(--light-gray);
    transition: var(--transition-fast);
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-contact p:hover {
    color: var(--white);
}

.footer-contact i {
    color: var(--accent-blue);
    width: 18px;
    text-align: center;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 10px;
    color: var(--accent-blue);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.footer-social a:hover {
    background: var(--accent-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.footer-bottom {
    padding: 0.8rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    text-align: center;
}

.footer-bottom-links {
    display: none;
}

.footer-bottom-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    font-weight: 300;
}

.footer-bottom-links a:hover {
    color: var(--accent-cyan);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    from { border-color: transparent; }
    to { border-color: var(--accent-blue); }
}

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

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero-section {
        min-height: calc(100vh - 60px);
        padding-top: calc(80px + 2rem);
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 3rem;
    }
    
    .about-section,
    .services-section,
    .contact-section {
        padding-top: calc(70px + 2rem);
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
        margin-top: 2.5rem;
        padding: 0 1rem;
    }
    
    .stat-item {
        min-width: 220px;
        width: 90%;
        max-width: 280px;
        padding: 1.5rem 1rem;
    }
    
    .contact-container {
        gap: 2rem;
    }
    
    .info-card {
        padding: 1.5rem;
        flex-direction: row;
        text-align: left;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 1.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-form-wrapper.compact-form {
        padding: 1.2rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: calc(70px + 1rem);
        flex-direction: column;
        background-color: rgba(15, 23, 42, 0.98);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-xl);
        padding: 2rem 0;
        backdrop-filter: blur(20px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
        margin: 1.5rem auto;
        padding: 0 1rem;
    }
    
    .cta-buttons {
        margin-top: 2.5rem;
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        padding: 1rem 1.8rem;
        font-size: 0.9rem;
        width: auto;
        min-width: 200px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2.5rem 1.5rem;
    }
    
    .specialization-title {
        font-size: 1.8rem;
        margin: 2rem 0 1rem 0;
    }
    
    .specialization-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .service-features {
        margin: 1.5rem 0;
    }
    
    .feature-item {
        padding: 0.7rem;
        gap: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
    
    .usp-section {
        margin: 3rem 0 1.5rem 0;
    }
    
    .usp-card {
        padding: 2rem 1.5rem;
    }
    
    .usp-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .usp-icon {
        font-size: 2rem;
        min-width: 60px;
        height: 60px;
    }
    
    .usp-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .usp-question {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .usp-description {
        font-size: 1rem;
    }
    
    .benefits-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .benefit-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .benefit-item span {
        font-size: 0.95rem;
    }
    
    .clientele-section {
        margin: 3rem 0;
    }
    
    .clientele-title {
        font-size: 1.8rem;
    }
    
    .clientele-description {
        font-size: 1rem;
        margin: 1.2rem auto 2rem;
    }
    
    .clients-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .client-item {
        padding: 1.2rem 1.5rem;
        gap: 1rem;
    }
    
    .client-icon {
        font-size: 1.8rem;
        min-width: 50px;
        height: 50px;
        padding: 0.8rem;
    }
    
    .client-name {
        font-size: 1.1rem;
    }
    
    .clientele-footer {
        font-size: 1rem;
        margin-top: 2rem;
    }
    
    .clients-center {
        margin: 1.5rem 0;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-wrapper {
        padding: 2.5rem 1.5rem;
    }
    
    .contact-form-wrapper.compact-form {
        padding: 1.5rem 1.2rem;
    }
    
    .info-card {
        padding: 1.5rem;
        flex-direction: row;
        text-align: left;
    }
    
    .cta-section {
        padding: 3rem 1.5rem;
        margin-top: 3rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member {
        padding: 2.5rem 1.5rem;
    }
    
    .member-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .stat-item {
        min-width: 250px;
    }
    
    .floating-element {
        display: none;
    }
    
    .shape {
        opacity: 0.05;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        display: none;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .form-header.compact-header {
        margin-bottom: 1.2rem;
    }
    
    .form-group.compact-group {
        margin-bottom: 1rem;
    }
    
    .form-group.compact-group:last-child {
        margin-bottom: 1.2rem;
    }
    
    .whatsapp-btn.compact-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        min-height: calc(100vh - 80px);
        padding-top: calc(70px + 2rem);
        padding-bottom: 2rem;
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }
    
    .about-section,
    .services-section,
    .contact-section {
        padding-top: calc(66px + 2rem);
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin: 1.2rem auto;
        padding: 0 0.5rem;
    }
    
    .hero-stats {
        margin-top: 2rem;
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 180px;
        padding: 1.2rem 0.8rem;
        max-width: none;
        width: 85%;
    }
    
    .nav-menu {
        top: calc(70px + 1rem);
    }
    
    .cta-buttons {
        margin-top: 2rem;
        gap: 0.8rem;
    }
    
    .hero-badge {
        padding: 0.5rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge span {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .divider {
        width: 50px;
    }
    
    .services-description,
    .contact-description,
    .about-description {
        font-size: 1.05rem;
    }
    
    .service-title {
        font-size: 1.4rem;
    }
    
    .cta-section h3 {
        font-size: 1.6rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem 1rem;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .logo h2 {
        font-size: 1.6rem;
    }
    
    .notification {
        max-width: 300px;
        padding: 1rem 1.5rem;
        right: 1rem;
        top: 1rem;
    }
    
    .hero-badge {
        padding: 0.6rem 1.4rem;
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
        gap: 0.6rem;
        min-width: 180px;
    }
    
    .service-card {
        padding: 2rem 1.2rem;
    }
    
    .service-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .specialization-title {
        font-size: 1.6rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .specialization-description {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
    .service-features {
        margin: 1.2rem 0;
    }
    
    .feature-item {
        padding: 0.6rem;
        gap: 0.7rem;
        margin-bottom: 0.7rem;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .feature-item span {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .usp-section {
        margin: 2.5rem 0 1rem 0;
    }
    
    .usp-card {
        padding: 1.5rem 1rem;
    }
    
    .usp-header {
        gap: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .usp-icon {
        font-size: 1.8rem;
        min-width: 50px;
        height: 50px;
        padding: 0.8rem;
    }
    
    .usp-title {
        font-size: 1.3rem;
    }
    
    .usp-question {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .usp-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .benefits-title {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .benefit-item {
        padding: 0.7rem;
        gap: 0.7rem;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .benefit-item span {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .benefit-item i {
        font-size: 1.1rem;
    }
    
    .clientele-section {
        margin: 2.5rem 0;
    }
    
    .clientele-title {
        font-size: 1.6rem;
    }
    
    .clientele-description {
        font-size: 0.95rem;
        margin: 1rem auto 1.5rem;
    }
    
    .clients-list {
        gap: 1.2rem;
        margin: 1.5rem 0;
    }
    
    .client-item {
        padding: 1rem 1.2rem;
        gap: 0.8rem;
        flex-direction: column;
        text-align: center;
    }
    
    .client-icon {
        font-size: 1.6rem;
        min-width: 45px;
        height: 45px;
        padding: 0.7rem;
    }
    
    .client-name {
        font-size: 1rem;
    }
    
    .clientele-footer {
        font-size: 0.95rem;
        margin-top: 1.5rem;
    }
    
    .clients-center {
        margin: 1.2rem 0;
    }
    
    .service-number {
        font-size: 2.5rem;
    }
    
    .contact-form-wrapper {
        padding: 1.8rem 1rem;
    }
    
    .contact-form-wrapper.compact-form {
        padding: 1.3rem 0.9rem;
    }
    
    .info-card {
        padding: 1.2rem;
    }
    
    .footer {
        padding: 3rem 0 0;
        margin-top: 4rem;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .footer-logo h2 {
        font-size: 1.8rem;
    }
    
    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .stat-item {
        min-width: 200px;
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .whatsapp-btn {
        padding: 0.9rem;
        font-size: 0.95rem;
    }
    
    .whatsapp-btn.compact-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .whatsapp-btn i {
        font-size: 1.1rem;
    }
    
    .whatsapp-btn.compact-btn i {
        font-size: 1rem;
    }
    
    .form-header.compact-header {
        margin-bottom: 1rem;
    }
    
    .form-group.compact-group {
        margin-bottom: 1rem;
    }
    
    .form-group.compact-group:last-child {
        margin-bottom: 1rem;
    }
    
    .radio-group.compact-radios {
        gap: 1.5rem;
        margin-top: 0.8rem;
    }
    
    .radio-label.compact-label {
        padding-left: 1.4rem;
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 320px) {
    .hero-section {
        min-height: calc(100vh - 100px);
        padding-top: calc(65px + 2rem);
        padding-bottom: 2rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .about-section,
    .services-section,
    .contact-section {
        padding-top: calc(60px + 2rem);
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin: 1rem auto;
        padding: 0 0.2rem;
    }
    
    .hero-stats {
        margin-top: 1.5rem;
        gap: 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 1.8rem 1rem;
    }
    
    .service-icon {
        font-size: 2.8rem;
    }
    
    .service-number {
        font-size: 2.5rem;
    }
    
    .stat-item {
        min-width: 140px;
        padding: 1rem 0.6rem;
        width: 80%;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .nav-menu {
        top: calc(65px + 1rem);
    }
    
    .hero-badge {
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-badge span {
        font-size: 0.75rem;
    }
    
    .cta-buttons {
        margin-top: 1.5rem;
        gap: 0.6rem;
    }
    
    .notification {
        max-width: 280px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .btn {
        min-width: 160px;
        padding: 0.8rem 1.2rem;
    }
    
    .member-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .whatsapp-btn {
        padding: 0.9rem;
        font-size: 0.9rem;
    }
    
    .whatsapp-btn i {
        font-size: 1rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
}