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

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #7c3aed;
    --accent: #f97316;
    --accent-dark: #ea580c;
    --dark: #1e293b;
    --dark-deep: #0b1120;
    --light: #f8fafc;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --success: #10b981;
    --warning: #f59e0b;
    --gradient-brand: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    --font-main: 'Inter', sans-serif;
    --font-mono: 'Roboto Mono', monospace;
}

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

img,
svg,
video,
iframe {
    max-width: 100%;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

.highlight {
    color: var(--primary);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: rgba(249, 115, 22, 0.35);
    z-index: -1;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-nav {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(249, 115, 22, 0.35);
}

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

.btn-secondary:hover {
    background-color: rgba(37, 99, 235, 0.08);
    transform: translateY(-3px);
}

.btn-nav {
    background: var(--gradient-brand);
    color: white !important;
    padding: 10px 22px;
    font-size: 0.95rem;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.35);
}

.btn-nav.active {
    background: var(--gradient-accent);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.3);
}

/* Navigation */
.navbar {
    padding: 20px 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 0;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    text-decoration: none;
    color: #1d4ed8;
    position: relative;
    display: inline-block;
    min-width: 0;
}

.logo .blocks {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    gap: 3px;
}

.logo .block {
    background: #f97316;
    border-radius: 2px;
}

.logo .block:nth-child(1) { width: 12px; height: 18px; }
.logo .block:nth-child(2) { width: 15px; height: 24px; }
.logo .block:nth-child(3) { width: 18px; height: 30px; }
.logo .block:nth-child(4) { width: 21px; height: 36px; }

.logo span:last-child {
    color: #f97316;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle.active i {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 100px 0 70px;
    background: radial-gradient(circle at 15% 20%, rgba(124, 58, 237, 0.25), transparent 45%),
                radial-gradient(circle at 85% 10%, rgba(37, 99, 235, 0.3), transparent 40%),
                linear-gradient(160deg, var(--dark-deep) 0%, #1e2a4a 55%, #24314f 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: white;
}

.hero-text {
    color: rgba(255, 255, 255, 0.75);
}

.hero .highlight {
    color: #fb923c;
}

.hero .highlight::after {
    background-color: rgba(251, 146, 60, 0.25);
}

.hero .btn-secondary {
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.hero .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 60px;
}

.subtitle {
    display: inline-block;
    font-family: var(--font-mono);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-text {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 700px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    border-radius: 12px;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.stat-card h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 8px;
}

.stat-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

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

/* Value Proposition */
.value-prop {
    padding: 100px 0;
    background-color: white;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.value-card {
    padding: 32px 30px;
    border-radius: 12px;
    background-color: var(--light);
    border-top: 4px solid transparent;
    border-image: var(--gradient-brand) 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(37, 99, 235, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-brand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(-4deg);
}

.value-card h3 {
    margin-bottom: 15px;
}

/* Services Preview */
.services-preview {
    padding: 100px 0;
    background-color: #f8fafc;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid transparent;
    border-image: var(--gradient-accent) 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.12);
}

.service-card h3 {
    margin-bottom: 20px;
    color: var(--dark);
}

.service-card ul {
    list-style: none;
    margin: 25px 0;
}

.service-card li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.service-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.service-link:hover {
    gap: 12px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-brand);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px);
    background-size: 22px 22px;
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cta-section .btn-primary:hover {
    background-color: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: var(--dark-deep);
    color: white;
    padding: 60px 0 30px;
    border-top: 4px solid transparent;
    border-image: var(--gradient-brand) 1;
}

footer .container {
    display: flex;
    flex-direction: column;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-col h4 span {
    color: var(--primary);
}

.footer-col a, .footer-col p {
    color: var(--gray-light);
    display: block;
    margin-bottom: 12px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-col i {
    margin-right: 10px;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

.social-links a:hover {
    background-color: var(--primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Page Hero */
.page-hero {
    padding: 110px 0 70px;
    background: radial-gradient(circle at 15% 20%, rgba(124, 58, 237, 0.25), transparent 45%),
                radial-gradient(circle at 85% 10%, rgba(37, 99, 235, 0.3), transparent 40%),
                linear-gradient(160deg, var(--dark-deep) 0%, #1e2a4a 55%, #24314f 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: white;
    margin-bottom: 20px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
}

/* Story Sections */
.story-section {
    padding: 100px 0;
}

.story-section.alt-bg {
    background-color: #f8fafc;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content.reverse {
    direction: rtl;
}

.story-content.reverse > * {
    direction: ltr;
}

.story-text h2 {
    margin-bottom: 30px;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.quote {
    background-color: var(--light);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    margin: 40px 0;
    position: relative;
}

.quote i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: block;
}

.quote p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--dark);
    margin: 0;
}

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

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    border: 8px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.placeholder-content {
    text-align: center;
    color: var(--gray);
}

.placeholder-content i {
    font-size: 4rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.placeholder-content p {
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.placeholder-content small {
    color: var(--gray);
}

.experience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
}

.experience-tags span {
    background-color: var(--light);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--primary);
}

/* Synthesis */
.synthesis {
    padding: 100px 0;
    background-color: white;
}

.synthesis-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 60px;
}

.synthesis-card {
    background-color: var(--light);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
}

.synthesis-card.main {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 50px 40px;
    z-index: 1;
    position: relative;
    transform: scale(1.05);
}

.synthesis-card.main h3,
.synthesis-card.main p {
    color: white;
}

.syn-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 1.8rem;
}

.synthesis-card.main .syn-icon {
    background: white;
    color: var(--primary);
}

.synthesis-card ul {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.synthesis-card li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

.synthesis-card li:before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary);
    font-weight: bold;
}

.syn-result {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.mission-statement {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background-color: var(--light);
    border-radius: 12px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-content,
    .synthesis-grid {
        grid-template-columns: 1fr;
    }
    
    .story-content.reverse {
        direction: ltr;
    }
    
    .synthesis-card.main {
        transform: none;
        order: -1;
    }
    
    .synthesis-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    .logo .blocks {
        top: -22px;
    }
    
    .logo .block:nth-child(1) { width: 11px; height: 16px; }
    .logo .block:nth-child(2) { width: 13px; height: 21px; }
    .logo .block:nth-child(3) { width: 16px; height: 26px; }
    .logo .block:nth-child(4) { width: 19px; height: 31px; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        z-index: 1000;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .navbar .container {
        padding: 15px 20px;
        width: 100%;
        min-width: 0;
    }
    
    .logo {
        font-size: 1.4rem;
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .logo .blocks {
        top: -18px;
        gap: 2px;
    }
    
    .logo .block:nth-child(1) { width: 9px; height: 13px; }
    .logo .block:nth-child(2) { width: 11px; height: 17px; }
    .logo .block:nth-child(3) { width: 13px; height: 21px; }
    .logo .block:nth-child(4) { width: 15px; height: 25px; }
    
    h1 {
        font-size: 2.2rem;
        overflow-wrap: anywhere;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta a {
        width: 100%;
        text-align: center;
        min-width: 0;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .value-grid,
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .story-image {
        margin-top: 40px;
    }
    
    .image-placeholder {
        width: 250px;
        height: 250px;
        margin: 0 auto 20px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
        overflow-wrap: anywhere;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.7rem;
        overflow-wrap: anywhere;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 12px;
        width: 100%;
        min-width: 0;
    }
    
    .btn-primary, .btn-secondary, .btn-nav {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    
    .logo {
        font-size: 1.1rem;
        max-width: calc(100% - 48px);
    }
    
    .logo .blocks {
        top: -16px;
        gap: 1px;
    }
    
    .logo .block:nth-child(1) { width: 8px; height: 11px; }
    .logo .block:nth-child(2) { width: 9px; height: 14px; }
    .logo .block:nth-child(3) { width: 11px; height: 17px; }
    .logo .block:nth-child(4) { width: 12px; height: 20px; }
    
    .hero {
        padding: 48px 0 32px;
    }

    .hero-content,
    .hero-stats,
    .hero-cta,
    .hero-cta a,
    .stat-card,
    .value-card,
    .service-card {
        min-width: 0;
    }

    .hero h1 {
        font-size: 1.7rem;
        line-height: 1.12;
    }

    .subtitle {
        max-width: 100%;
        padding: 6px 10px;
        font-size: 0.68rem;
        letter-spacing: 0.5px;
        white-space: normal;
    }
    
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .page-hero h1 {
        font-size: 1.6rem;
    }
    
    .story-section {
        padding: 60px 0;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .synthesis {
        padding: 60px 0;
    }
    
    .synthesis-grid {
        gap: 20px;
    }
    
    .synthesis-card {
        padding: 25px 20px;
    }
    
    .synthesis-card.main {
        padding: 30px 20px;
    }
    
    .image-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .placeholder-content i {
        font-size: 3rem;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .hero-text {
        font-size: 1rem;
        overflow-wrap: anywhere;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
    
    .footer-content {
        gap: 30px;
    }
}

/* Contact Form Styles */
.contact-section {
    padding: 80px 0;
    background-color: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 2rem;
}

.contact-form p {
    color: var(--gray);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.1);
}

.info-card h3 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h3 i {
    color: var(--primary);
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    color: var(--gray);
    margin-bottom: 8px;
    padding-left: 0;
}

.info-card p {
    color: var(--gray);
    margin-bottom: 8px;
}

/* Responsive Contact Form */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 25px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        text-align: center;
    }
}
