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

html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*, *::before, *::after {
    box-sizing: inherit;
}

:root {
    /* Brand Colors - Exact Hex from Mockup */
    --navy: #1B3358;
    --red: #D5102B;
    --white: #FFFFFF;
    --light-gray: #FAFAFA;
    --dark-text: #1A1A1A;
    --icon-gray: #4A4A4A;
    
    /* Legacy Colors (for compatibility) */
    --nav-dark: #1a1a1a;
    --primary-red: #C8102E;
    --accent-maroon: #8B4513;
    --accent-dark-red: #A0522D;
    --accent-red: #DC143C;
    --text-color: #1e293b;
    --text-light: #64748b;
    --bg-color: #ffffff;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    min-height: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    position: relative;
}

/* Ensure all sections are full width with no margins */
section {
    margin: 0 !important;
    padding: 0;
    width: 100% !important;
    max-width: 100% !important;
    display: block;
    box-sizing: border-box;
}

main {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

nav {
    margin: 0 !important;
    padding: 0;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

/* Remove all default browser spacing */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

/* Safe area insets for notched devices */
@supports (padding: max(0px)) {
    body {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
    
    .navbar {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Override container padding for full-width sections */
section > .container,
nav > .container {
    padding-left: 20px;
    padding-right: 20px;
}

/* Responsive container padding */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

.hero-container {
    max-width: 1100px;
}

/* Navigation */
.navbar {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    overflow: hidden;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.brand-dev {
    color: #60a5fa;
    font-weight: 600;
}

.brand-domain {
    color: white;
    font-weight: 700;
}

.brand-name {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}

.nav-brand a {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 0;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: flex-end;
    margin-right: 1.5rem;
}

/* Show desktop nav only at 992px+ */
@media (min-width: 992px) {
    .nav-menu {
        display: flex;
    }
}

.nav-menu li {
    margin: 0;
    padding: 0;
    background-color: transparent;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.625rem 1rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: transparent;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.9);
    background-color: rgba(255, 255, 255, 0.12);
}

.nav-link.active {
    background-color: transparent;
    color: white;
    font-weight: 600;
}

.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 6px;
    display: inline-block;
    transition: transform 0.3s ease;
    color: var(--white);
}

.dropdown:hover .dropdown-arrow,
.dropdown[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 260px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    margin-top: 8px;
    padding: 8px 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.dropdown:hover .dropdown-menu,
.dropdown[aria-expanded="true"] .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-menu .nav-link {
    color: var(--navy);
    padding: 12px 20px;
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 0;
    text-transform: none;
    letter-spacing: 0;
}

.dropdown-menu .nav-link:hover {
    background-color: var(--light-gray);
    color: var(--red);
    padding-left: 24px;
}

.dropdown-menu .nav-link:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.dropdown-menu .nav-link:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.btn-book {
    background: #C8102E;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
    min-height: 44px;
    border: none;
    cursor: pointer;
}

.btn-book::after {
    content: '→';
    margin-left: 0.5rem;
    font-size: 1rem;
}

.btn-book:hover {
    background: #A02020;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.4);
}

.btn-book:active {
    transform: translateY(0);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 30%, #8b5cf6 60%, #ec4899 100%);
    color: white;
    padding: 5rem 0 4rem;
    min-height: 75vh;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 100%;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-weight: 600;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    opacity: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both, titleGlow 3s ease-in-out infinite 1.5s;
    opacity: 0;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 1s ease-out 0.6s both;
    opacity: 0;
}

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

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 2px 20px rgba(255, 255, 255, 0.3),
                     0 0 30px rgba(255, 255, 255, 0.2);
    }
    50% {
        text-shadow: 0 2px 30px rgba(255, 255, 255, 0.5),
                     0 0 40px rgba(255, 255, 255, 0.3),
                     0 0 50px rgba(255, 255, 255, 0.2);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
    opacity: 0;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    animation: buttonPulse 2s ease-in-out infinite 1.2s;
}

.btn-primary:hover {
    background-color: #1e40af;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-blue);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 99, 235, 0.6),
                    0 0 30px rgba(37, 99, 235, 0.3);
    }
}

/* Hero Graphics - Glass Morphism */
.hero-graphics {
    position: relative;
    height: 500px;
    width: 100%;
    min-width: 400px;
    animation: fadeInRight 1.2s ease-out 0.3s forwards;
    opacity: 0;
    overflow: visible;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.main-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    text-align: center;
    z-index: 2;
    animation: cardFloat 6s ease-in-out infinite, cardGlow 3s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px) rotate(0deg);
    }
    25% {
        transform: translate(-50%, -50%) translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-5px) rotate(0deg);
    }
    75% {
        transform: translate(-50%, -50%) translateY(-15px) rotate(-1deg);
    }
}

@keyframes cardGlow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                    0 0 0 rgba(255, 0, 110, 0);
    }
    50% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                    0 0 30px rgba(255, 0, 110, 0.3),
                    0 0 60px rgba(255, 0, 110, 0.1);
    }
}

.main-card:hover {
    transform: translate(-50%, -50%) translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(255, 0, 110, 0.4);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: iconBounce 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    animation: titlePulse 2s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.card-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.hero-graphics .code-snippet {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 1;
    animation-fill-mode: forwards;
}

.hero-graphics .code-snippet code {
    color: white;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.hero-graphics .code-snippet:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(59, 130, 246, 0.3);
    z-index: 10;
}

.hero-graphics .snippet-1 {
    top: 12%;
    left: 2%;
    animation: float 6s ease-in-out infinite, fadeInSnippet 0.8s ease-out 1.6s forwards;
    will-change: opacity, transform;
    z-index: 3;
}

/* Ensure snippets stay visible after animation */
.hero-graphics .snippet-1,
.hero-graphics .snippet-2,
.hero-graphics .snippet-3 {
    animation-fill-mode: forwards;
}

@keyframes fadeInSnippet {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-graphics .snippet-2 {
    top: 8%;
    right: 5%;
    animation: float 7s ease-in-out infinite 0.5s, fadeInSnippet 1s ease-out 1.8s forwards;
    z-index: 3;
}

.hero-graphics .snippet-3 {
    top: 58%;
    right: 2%;
    animation: float 6.5s ease-in-out infinite 1s, fadeInSnippet 1s ease-out 2s forwards;
    z-index: 3;
}

.snippet-4 {
    bottom: 18%;
    left: 3%;
    animation: float 7.5s ease-in-out infinite 1.5s, fadeInSnippet 1s ease-out 1.6s both;
}

.snippet-5 {
    bottom: 15%;
    right: 8%;
    animation: float 6s ease-in-out infinite 2s, fadeInSnippet 1s ease-out 1.8s both;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
    }
    50% { 
        transform: translateY(-25px) rotate(0deg); 
    }
    75% {
        transform: translateY(-15px) rotate(-2deg);
    }
}


/* Why Section */
.why-section {
    padding: 6rem 0;
    background: white;
}

.section-label {
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.icon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.icon-pink {
    background: linear-gradient(135deg, #f472b6 0%, #fbcfe8 100%);
}

.icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.feature-icon {
    font-size: 2.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* Our Story Section */
.our-story-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #6b21a8 0%, #9333ea 50%, #a855f7 100%);
    position: relative;
    overflow: hidden;
}

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

.story-overlay {
    position: relative;
}

.story-image-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.story-image-placeholder {
    width: 100%;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.story-image-icon {
    font-size: 5rem;
    opacity: 0.8;
}

.story-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
}

.story-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-red);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(255, 0, 110, 0.3);
}

.story-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-content {
    color: white;
}

.story-content .story-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-weight: 600;
    display: block;
}

.story-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--accent-red);
    text-shadow: 0 2px 10px rgba(255, 0, 110, 0.3);
}

.story-text {
    margin-bottom: 2.5rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

.story-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.story-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.story-feature-item .checkmark {
    width: 24px;
    height: 24px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Statistics Section */
.stats-section {
    padding: 5rem 0;
    background-color: #282c34;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #ff6b35;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #a0a0a0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Call to Action Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #6b21a8 0%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    z-index: 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(255, 0, 110, 0.3);
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.btn-cta {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.5);
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(59, 130, 246, 0.6);
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #f8fafc 0%, white 100%);
}

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

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card-header {
    height: 6px;
    width: 100%;
}

.gradient-teal-pink {
    background: linear-gradient(90deg, #a7f3d0 0%, #fbcfe8 100%);
}

.gradient-orange-pink {
    background: linear-gradient(90deg, #fed7aa 0%, #fbcfe8 100%);
}

.gradient-pink-red {
    background: linear-gradient(90deg, #fbcfe8 0%, #fca5a5 100%);
}

.gradient-purple {
    background: linear-gradient(90deg, #c4b5fd 0%, #ddd6fe 100%);
}

.gradient-blue {
    background: linear-gradient(90deg, #93c5fd 0%, #bfdbfe 100%);
}

.gradient-green {
    background: linear-gradient(90deg, #86efac 0%, #bbf7d0 100%);
}

.gradient-pink {
    background: linear-gradient(90deg, #f9a8d4 0%, #fbcfe8 100%);
}

/* Icon Background Colors */
.icon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.icon-pink {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}

.icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.icon-green {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.service-card-body {
    padding: 2.5rem;
    text-align: center;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.icon-teal {
    background: linear-gradient(135deg, #5eead4 0%, #a7f3d0 100%);
}

.icon-orange {
    background: linear-gradient(135deg, #fb923c 0%, #fed7aa 100%);
}

.icon-pink-service {
    background: linear-gradient(135deg, #f472b6 0%, #fbcfe8 100%);
}

.icon-purple-service {
    background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 100%);
}

.icon-blue-service {
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
}

.icon-green {
    background: linear-gradient(135deg, #34d399 0%, #86efac 100%);
}

.service-icon {
    font-size: 2.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #8b5cf6 0%, #2563eb 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
    transition: all 0.3s;
    z-index: 999;
}

.chat-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.5);
}

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid white;
}

.chat-icon {
    font-size: 1.5rem;
}

.chat-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.chat-text strong {
    font-size: 0.9rem;
}

.chat-text span {
    font-size: 0.75rem;
    opacity: 0.9;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    transition: all 0.3s;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1e293b 0%, #4c1d95 50%, #6b21a8 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page Hero Section */
.about-hero {
    background: linear-gradient(135deg, #4c1d95 0%, #6b21a8 50%, #9333ea 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

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

.about-hero-content {
    color: white;
}

.about-hero-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--accent-red);
    text-shadow: 0 2px 10px rgba(255, 0, 110, 0.3);
}

.about-hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.about-hero-icons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.hero-icon-item {
    width: 80px;
    height: 80px;
}

.hero-icon-item.featured {
    width: 120px;
    height: 120px;
}

.hero-icon-circle {
    width: 100%;
    height: 100%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.hero-icon-item.featured .hero-icon-circle {
    border-width: 4px;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.hero-icon {
    font-size: 2rem;
}

.hero-icon-item.featured .hero-icon {
    font-size: 3rem;
}

/* Our Approach Section */
.approach-section {
    padding: 5rem 0;
    background: white;
}

.approach-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 2rem;
}

.approach-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.approach-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Why Choose Devon Global Immigration Services Section */
.why-choose-section {
    padding: 5rem 0;
    background: white;
}

.why-choose-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.why-choose-tagline {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-choose-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.why-choose-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.icon-orange {
    background: linear-gradient(135deg, #fb923c 0%, #fed7aa 100%);
}

.icon-blue-link {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.icon-gradient {
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
}

.why-choose-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.why-choose-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* Our Impact Section */
.impact-section {
    padding: 5rem 0;
    background: #282c34;
}

.impact-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.impact-tagline {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.impact-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.impact-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Ready to Transform Section */
.transform-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #6b21a8 0%, #9333ea 50%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
}

.transform-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.transform-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(255, 0, 110, 0.3);
}

.transform-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.transform-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-transform-outline {
    background: transparent;
    color: white;
    border: 2px solid #3b82f6;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-transform-outline:hover {
    background: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-transform-filled {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    border: 2px solid transparent;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-transform-filled:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact-info p {
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

.contact-item {
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-item a {
    color: var(--primary-blue);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Form Styles */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

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

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

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Alerts */
.alert {
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 2px solid #ef4444;
}

.alert h3 {
    margin-bottom: 0.5rem;
}

/* Contact Options Section */
.contact-options-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-option-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.contact-option-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: var(--bg-light);
}

.whatsapp-icon {
    background: rgba(37, 211, 102, 0.1);
}

.call-icon {
    background: rgba(139, 92, 246, 0.1);
}

.email-icon {
    background: rgba(236, 72, 153, 0.1);
}

.contact-option-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact-option-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-call {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.btn-email {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background: white;
}

.contact-form-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.form-progress {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.progress-step.active .step-number {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.step-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.progress-step.active .step-label {
    color: var(--primary-blue);
    font-weight: 600;
}

.form-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.form-section-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
}

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

.form-actions {
    margin-top: 2rem;
    text-align: right;
}

.btn-form-submit {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

/* Visit Office Section */
.visit-office-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.office-card {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.office-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.office-content > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.office-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.office-info-item {
    display: flex;
    align-items: flex-start;
}

.office-info-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 1rem;
}

.office-info-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.office-map {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-section {
    padding: 5rem 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.about-text h2 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

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

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.skill-tag {
    background: var(--primary-blue);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
}

.experience-section {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 0.5rem;
}

.experience-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.experience-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.experience-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.experience-year {
    min-width: 150px;
    font-weight: bold;
    color: var(--primary-blue);
}

.experience-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.experience-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: normal;
}

.experience-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Portfolio Categories Section */
.portfolio-categories-section {
    padding: 6rem 0;
    background: white;
}

.portfolio-section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.portfolio-section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.category-card-header {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.category-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category-icon {
    font-size: 2rem;
}

.category-card-body {
    padding: 2rem;
}

.category-card-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.category-card-body > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.category-projects {
    margin-bottom: 1.5rem;
}

.category-projects strong {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-size: 0.95rem;
}

.category-projects ul {
    list-style: none;
    padding-left: 0;
}

.category-projects li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.category-projects li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.category-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background: var(--bg-light);
    color: var(--text-color);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.btn-category {
    background: var(--primary-blue);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-category:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Featured Projects Section */
.featured-projects-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, white 0%, #f8fafc 100%);
}

.featured-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.featured-project-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.featured-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.project-card-header {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-icon {
    font-size: 2.5rem;
    color: white;
}

.project-card-body {
    padding: 2rem;
}

.project-card-body h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.project-card-body > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.project-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.btn-project {
    background: var(--primary-blue);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-project:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* GitHub Portfolio Section */
.github-portfolio-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #4c1d95 50%, #6b21a8 100%);
}

.github-section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(255, 0, 110, 0.3);
}

.github-section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.github-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.github-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    cursor: pointer;
}

.github-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.github-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.github-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    text-transform: capitalize;
}

/* Portfolio CTA Section */
.portfolio-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #6b21a8 0%, #9333ea 50%, #3b82f6 100%);
}

.portfolio-cta-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(255, 0, 110, 0.3);
}

.portfolio-cta-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.portfolio-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-cta-outline:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-cta-filled {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    border: 2px solid transparent;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-cta-filled:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

/* Services Hero Section */
.services-hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, #6b21a8 0%, #3b82f6 50%, #60a5fa 100%);
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
    z-index: 0;
}

.services-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.star-icon {
    font-size: 1rem;
}

.services-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.services-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.services-hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.services-hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-hero-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
}

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

.btn-hero-filled {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    border: 2px solid transparent;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-hero-filled:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.services-hero-graphics {
    position: relative;
    height: 500px;
}

.services-glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: cardFloat 6s ease-in-out infinite;
}

.main-services-card {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(59, 130, 246, 0.2);
    animation: cardGlow 3s ease-in-out infinite;
}

.services-card-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    background: rgba(236, 72, 153, 0.2);
    animation-delay: 0.5s;
}

.services-card-2 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 10%;
    background: rgba(107, 114, 128, 0.2);
    animation-delay: 1s;
}

.services-card-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    background: rgba(34, 197, 94, 0.2);
    animation-delay: 1.5s;
}

.services-card-icon {
    font-size: 3rem;
    color: white;
}

/* Digital Solutions Section */
.digital-solutions-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.expertise-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 auto 1rem;
    text-align: center;
    display: block;
    width: fit-content;
}

.solutions-section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.solutions-section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.solution-card-header {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.solution-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.solution-icon {
    font-size: 2rem;
}

.solution-card-body {
    padding: 2rem;
}

.solution-card-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.solution-card-body > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.solution-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.solution-tag {
    background: var(--bg-light);
    color: var(--text-color);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.btn-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    font-size: 0.95rem;
    border: none;
}

.btn-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.btn-red {
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    font-size: 0.95rem;
    border: none;
}

.btn-red:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    font-size: 0.95rem;
    border: none;
}

.btn-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-pink {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    font-size: 0.95rem;
    border: none;
}

.btn-pink:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

/* Why Choose Section */
.why-choose-section {
    padding: 6rem 0;
    background: white;
}

.why-choose-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.why-choose-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Transform CTA Section */
.transform-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #6b21a8 0%, #3b82f6 50%, #60a5fa 100%);
    position: relative;
    overflow: hidden;
}

.transform-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
    z-index: 0;
}

.transform-cta-section .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.transform-cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.transform-cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.btn-transform-cta {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    border: 2px solid transparent;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-transform-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

/* Footer */
.footer {
    background-color: var(--nav-dark);
    color: white;
    padding: 3rem 0 1rem;
    margin: 0 !important;
    margin-top: 4rem;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-login {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-footer-link {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-footer-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-footer-logout {
    background: rgba(229, 62, 62, 0.2);
    border-color: rgba(229, 62, 62, 0.3);
}

.btn-footer-logout:hover {
    background: rgba(229, 62, 62, 0.3);
}

.footer-login-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    margin-top: 0.25rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-logo-item {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.footer-license-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-seo-links {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.footer-seo-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-seo-links a:hover {
    color: rgba(255, 255, 255, 1);
}

/* Top Contact Bar Styles */
.top-contact-bar {
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.875rem;
    margin: 0 !important;
    padding: 0.75rem 0;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    display: block;
    will-change: transform;
}

.top-contact-bar .container {
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-contact-left {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.top-contact-right {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: #8B4513;
}

.top-contact-link {
    color: #8B4513;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s;
}

.top-contact-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.contact-icon {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-graphics {
        height: 400px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .services-section .container > div[style*="grid-template-columns: repeat(3"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .top-contact-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem !important;
    }
    
    .top-contact-left,
    .top-contact-right {
        flex-direction: column;
        gap: 0.5rem !important;
        width: 100%;
        justify-content: center;
    }
    
    .hero > .container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .services-section .container > div[style*="grid-template-columns: repeat(3"] {
        grid-template-columns: 1fr !important;
    }
    
    .why-section .container > div[style*="grid-template-columns: repeat(3"] {
        grid-template-columns: 1fr !important;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar .container {
        gap: 1rem;
    }
    
    /* Desktop nav hidden on mobile — mobile-menu.css handles everything */
    .nav-menu {
        display: none !important;
    }

    .nav-brand {
        flex: 1;
        min-width: 0;
    }

    .nav-brand a {
        font-size: 1rem;
    }

    .btn-book {
        display: none;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .logo-image {
        height: 35px;
        max-width: 120px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
    }
    
    .hero-graphics {
        height: 350px;
    }
    
    .main-card {
        width: 250px;
        padding: 2rem;
    }
    
    .hero-graphics .code-snippet {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .experience-item {
        flex-direction: column;
        gap: 1rem;
    }

    .experience-year {
        min-width: auto;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .approach-title,
    .why-choose-title,
    .impact-title,
    .transform-title {
        font-size: 2rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-projects-grid {
        grid-template-columns: 1fr;
    }
    
    .github-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-outline,
    .btn-cta-filled {
        width: 100%;
        max-width: 300px;
    }
    
    .services-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-hero-title {
        font-size: 2.5rem;
    }
    
    .services-hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .services-hero-buttons {
        flex-direction: column;
    }
    
    .services-hero-graphics {
        height: 400px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-options-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .office-card {
        grid-template-columns: 1fr;
    }
    
    .office-map {
        height: 300px;
    }
    
    .story-title {
        font-size: 2rem;
    }
    
    .story-features {
        grid-template-columns: 1fr;
    }
    
    .story-image-placeholder {
        height: 250px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .btn-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .chat-widget {
        bottom: 20px;
        right: 20px;
        padding: 0.75rem 1rem;
    }
    
    .chat-text {
        display: none;
    }
    
    .scroll-top {
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-icons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .transform-title {
        font-size: 2rem;
    }
    
    .transform-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-transform-outline,
    .btn-transform-filled {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.7rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
    }
    
    .services-hero-title {
        font-size: 2rem;
    }
    
    .services-hero-description {
        font-size: 0.95rem;
    }
    
    .services-hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-projects-grid {
        grid-template-columns: 1fr;
    }
    
    .github-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .portfolio-cta-buttons .btn {
        width: 100%;
    }
}

/* Consultation Modal */
.consultation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
    animation: fadeIn 0.3s ease-out;
}

.consultation-modal.active {
    display: flex;
}

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

.consultation-modal-content {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.3s ease-out;
    position: relative;
}

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

.consultation-modal-header {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    color: white;
    padding: 2.5rem 2rem 1.5rem;
    border-radius: 16px 16px 0 0;
    position: relative;
}

.consultation-modal-header h2 {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.consultation-subtitle {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.consultation-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: white;
    padding: 0;
}

.consultation-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.consultation-form {
    padding: 2rem;
}

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

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

.consultation-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.consultation-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: white;
    color: #1a202c;
}

.consultation-input:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.consultation-input::placeholder {
    color: #a0aec0;
}

.consultation-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a5568' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.consultation-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.consultation-form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.btn-consultation-cancel {
    padding: 0.875rem 2rem;
    background: #e2e8f0;
    color: #4a5568;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-consultation-cancel:hover {
    background: #cbd5e0;
    color: #2d3748;
}

.btn-consultation-submit {
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-consultation-submit:hover {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-consultation-submit:active {
    transform: translateY(0);
}

.btn-consultation-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Service Detail Pages */
.service-detail-section {
    padding: 5rem 0;
    background: white;
}

.service-detail-header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-detail-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.service-detail-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-red);
    margin: 0;
}

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

.service-feature-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.service-feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.service-feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.service-approach-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.service-approach-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

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

.service-process-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s;
}

.service-process-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.service-process-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 1rem 0 0.75rem 0;
}

.service-process-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.service-benefits-section {
    padding: 5rem 0;
    background: white;
}

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

.service-benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.service-benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.service-benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.service-tech-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.tech-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.tech-tag-large {
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.tech-tag-large:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 81, 191, 0.3);
}

.service-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #4c1d95 50%, #6b21a8 100%);
    color: white;
}

.service-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

.service-cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.service-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-outline {
    padding: 0.875rem 2rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-cta-filled {
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-cta-filled:hover {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.services-hero-subdescription {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

/* Web Development Hero Section */
.webdev-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    color: white;
    padding: 4rem 0 3rem;
    min-height: 70vh;
    position: relative;
    overflow: hidden;
}

.webdev-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.webdev-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.webdev-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.webdev-hero-text {
    position: relative;
    z-index: 2;
}

.webdev-hero-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-align: left;
}

.webdev-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ef4444;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.webdev-hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-align: left;
}

.webdev-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-webdev-outline {
    padding: 0.875rem 2rem;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-webdev-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.btn-webdev-filled {
    padding: 0.875rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid transparent;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-webdev-filled:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.webdev-hero-graphics {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.webdev-browser-card {
    position: relative;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.browser-window {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.browser-header {
    background: #2d3748;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
}

.browser-controls {
    display: flex;
    gap: 0.5rem;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.control-red {
    background: #ef4444;
}

.control-yellow {
    background: #fbbf24;
}

.control-green {
    background: #10b981;
}

.browser-content {
    padding: 2rem;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.browser-content-line {
    height: 12px;
    background: #e2e8f0;
    border-radius: 4px;
    width: 100%;
}

.browser-content-line.short {
    width: 60%;
}

.browser-content-block {
    height: 60px;
    background: #3b82f6;
    border-radius: 8px;
    width: 100%;
    margin: 0.5rem 0;
}

.webdev-browser-label {
    text-align: center;
    margin-top: 1.5rem;
}

.browser-label-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 0.5rem;
}

.browser-label-tech {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.webdev-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatIcon 4s ease-in-out infinite;
}

.webdev-icon-search {
    left: -30px;
    top: 20%;
    animation-delay: 0s;
}

.webdev-icon-mobile {
    right: -30px;
    top: 10%;
    animation-delay: 1s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

.webdev-code-snippets {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

/* Webdev service page code snippets - scoped to avoid conflicts */
.webdev-hero-graphics .code-snippet,
.service-web-development .code-snippet {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    animation: fadeInCode 2s ease-in;
}

.code-snippet code {
    background: transparent;
    color: inherit;
    padding: 0;
    border: none;
}

.code-snippet-1 {
    top: 10%;
    left: 5%;
    max-width: 250px;
}

.code-snippet-2 {
    bottom: 15%;
    left: 8%;
    max-width: 200px;
}

.code-snippet-3 {
    top: 20%;
    right: 8%;
    max-width: 220px;
}

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

/* Responsive Web Development Hero */
@media (max-width: 1024px) {
    .webdev-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .webdev-hero-title {
        font-size: 2.5rem;
    }
    
    .webdev-hero-graphics {
        order: -1;
    }
}

@media (max-width: 768px) {
    .webdev-hero {
        padding: 3rem 0 2rem;
        min-height: auto;
    }
    
    .webdev-hero-title {
        font-size: 2rem;
    }
    
    .webdev-hero-description {
        font-size: 1rem;
    }
    
    .webdev-hero-buttons {
        flex-direction: column;
    }
    
    .btn-webdev-outline,
    .btn-webdev-filled {
        width: 100%;
        text-align: center;
    }
    
    .webdev-icon {
        display: none;
    }
    
    .code-snippet {
        font-size: 0.75rem;
        padding: 0.75rem 1rem;
    }
    
    .code-snippet-1,
    .code-snippet-2,
    .code-snippet-3 {
        max-width: 150px;
    }
}

/* Responsive Service Detail Pages */
@media (max-width: 768px) {
    .service-detail-title {
        font-size: 2rem;
    }
    
    .service-features-grid,
    .service-process-grid,
    .service-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .service-cta-title {
        font-size: 2rem;
    }
    
    .service-cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-outline,
    .btn-cta-filled {
        width: 100%;
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .consultation-modal {
        padding: 0;
        align-items: flex-end;
    }
    
    .consultation-modal-content {
        max-width: 100%;
        max-height: 95vh;
        border-radius: 16px 16px 0 0;
        margin-top: auto;
    }
    
    .consultation-modal-header {
        padding: 2rem 1.5rem 1rem;
    }
    
    .consultation-modal-header h2 {
        font-size: 1.5rem;
        padding-right: 3rem;
    }
    
    .consultation-form {
        padding: 1.5rem;
    }
    
    .consultation-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .consultation-form-actions {
        flex-direction: column-reverse;
    }
    
    .btn-consultation-cancel,
    .btn-consultation-submit {
        width: 100%;
    }
}

/* Extra small devices (phones in portrait, < 360px) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.65rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .nav-brand a {
        font-size: 0.9rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .logo-image {
        height: 30px;
        max-width: 100px;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Landscape orientation for mobile devices */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 3rem 0 2rem;
    }
    
    .hero-container {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-graphics {
        height: 300px;
    }
    
    .services-hero {
        padding: 3rem 0;
    }
}

/* Tablet optimizations (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .navbar .container {
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 0.15rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.875rem;
        font-size: 0.9rem;
    }
    
    .btn-book {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .book-text {
        display: none;
    }
    
    .btn-book .book-icon {
        margin: 0;
    }
    
    .hero-container {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large screens (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-container {
        max-width: 1300px;
    }
}

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
    /* Mobile/touch devices */
    .btn,
    .nav-link,
    a {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-link {
        padding: 1rem 1.5rem;
    }
    
    .btn {
        padding: 1rem 2rem;
    }
    
    /* Remove hover effects on touch devices */
    .btn:hover,
    .nav-link:hover {
        transform: none;
    }
    
    /* Better tap targets */
    .chat-widget,
    .scroll-top {
        min-width: 56px;
        min-height: 56px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-icon svg {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .logo-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print styles */
@media print {
    .navbar,
    .chat-widget,
    .scroll-top,
    .btn-book,
    .menu-toggle,
    .mobile-drawer,
    .menu-overlay {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        background: white !important;
        color: black !important;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Dark mode support (if needed in future) */
@media (prefers-color-scheme: dark) {
    /* Can be implemented later if dark mode is desired */
}

/* Focus visible for keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Improve text readability on small screens */
@media (max-width: 768px) {
    body {
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    h1 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    
    h2 {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    h3 {
        font-size: clamp(1.25rem, 3.5vw, 1.75rem);
    }
    
    p {
        font-size: clamp(0.95rem, 2.5vw, 1rem);
    }
}

/* Services hero responsive improvements */
@media (max-width: 768px) {
    .services-hero-container {
        padding: 2rem 0;
    }
    
    .services-hero-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .services-hero-graphics {
        height: 300px;
    }
    
    .services-glass-card {
        transform: scale(0.9);
    }
}

/* Portfolio responsive improvements */
@media (max-width: 768px) {
    .portfolio-categories-section,
    .featured-projects-section,
    .github-portfolio-section {
        padding: 3rem 0;
    }
}

/* Contact form responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        gap: 2rem;
    }
    
    .form-group-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Footer responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section ul {
        align-items: center;
    }
}

/* ========================================
   HOMEPAGE STYLES - EXACT MOCKUP MATCH
   ======================================== */

/* SECTION 1: HERO SECTION */
.home-hero {
    background: var(--white);
    padding: 80px 0;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.hero-subheadline {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-text);
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

.hero-services-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.hero-services-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--dark-text);
    margin-bottom: 16px;
    line-height: 1.5;
}

.check-icon {
    color: var(--red);
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--red);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
    display: inline-block;
}

.btn-hero-primary:hover {
    background: #b80e25;
}

.btn-hero-secondary {
    background: var(--white);
    color: var(--red);
    border: 2px solid var(--red);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-hero-secondary:hover {
    background: var(--red);
    color: var(--white);
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-card {
    width: 100%;
    max-width: 450px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    position: relative;
}

.hero-image-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    box-shadow: none;
    position: relative;
    z-index: 1;
}

.hero-title-overlay {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0;
    position: absolute;
    top: 12%;
    left: -45%;
    right: 15%;
    z-index: 2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 85%;
    padding-right: 20px;
}

.hero-image-placeholder {
    min-height: 500px;
}

/* SECTION 2: TRUST BADGES */
.trust-badges {
    background: var(--white);
    padding: 40px 0;
    width: 100%;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 24px;
    background: var(--white);
    border: 1px solid var(--dark-text);
    border-radius: 0;
    text-align: center;
    min-height: 70px;
}

.badge-item.badge-simple {
    justify-content: center;
}

.badge-item.badge-with-icon {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
}

.badge-item.badge-number {
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.badge-icon {
    color: var(--dark-text);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: currentColor;
}

.badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--dark-text);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.badge-text strong {
    font-weight: 700;
}

.badge-number-large {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-text);
    line-height: 1;
    display: block;
}

.badge-text-small {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--dark-text);
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.4;
}

/* SECTION 3: SERVICES SECTION */
.services-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.services-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--dark-text);
    margin-bottom: 12px;
    line-height: 1.6;
}

.service-list .check-icon {
    color: var(--red);
    flex-shrink: 0;
}

/* SECTION 4: CONTACT SECTION */
.contact-section {
    background: var(--white);
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-column {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    color: var(--red);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}

.contact-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--dark-text);
    line-height: 1.8;
    margin: 0;
}

/* Update Top Contact Bar for Homepage */
.top-contact-bar {
    background: var(--white);
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
}

.top-contact-left,
.top-contact-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-contact-link {
    color: var(--navy);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-icon {
    color: var(--navy);
    font-size: 16px;
}

/* Image sizing helpers */
.nav-brand img {
    height: 45px;
    width: auto;
    display: block;
}

.top-contact-left img {
    height: 40px;
    width: auto;
    display: block;
}

.footer-section img {
    height: 50px;
    width: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
    margin-bottom: 16px;
}

/* Desktop-only nav refinements */
@media (min-width: 992px) {
    .nav-link {
        color: var(--white);
        font-family: 'Inter', sans-serif;
        font-size: 15px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        position: relative;
        padding: 8px 16px;
        text-decoration: none;
        transition: all 0.3s ease;
        background-color: transparent;
        border-radius: 0;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--red);
        transition: width 0.3s ease;
    }

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

    .dropdown-arrow {
        font-size: 10px;
        margin-left: 4px;
        display: inline-block;
        transition: transform 0.3s ease;
    }
}

/* Responsive Design */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title-overlay {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        margin-bottom: 24px;
        font-size: 36px;
        max-width: 100%;
    }
    
    .hero-image-card {
        overflow: visible;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ── MOBILE OVERRIDES (768px and below) ───────────── */
@media (max-width: 768px) {

    /* ── Top Bar: slim single row ─────────────────── */
    .top-contact-bar {
        padding: 6px 0;
    }

    .top-contact-bar .container {
        flex-direction: row !important;
        justify-content: space-between;
        align-items: center;
        gap: 8px !important;
    }

    .top-contact-left,
    .top-contact-right {
        flex-direction: row !important;
        gap: 10px !important;
        width: auto !important;
    }

    /* Hide text labels, show only icons */
    .top-contact-link {
        font-size: 0;
        padding: 6px;
        min-width: 36px;
        min-height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .top-contact-link svg {
        width: 18px;
        height: 18px;
    }

    .btn-top-assessment {
        font-size: 11px !important;
        padding: 6px 14px !important;
        white-space: nowrap;
    }

    /* ── Smart sticky: hide on scroll down ────────── */
    .top-contact-bar {
        transition: transform 0.3s ease;
    }

    .top-contact-bar.bar-hidden {
        transform: translateY(-100%);
    }

    /* ── Hero: reorder — image first, then title, then list ─── */
    .home-hero {
        padding: 32px 0 48px;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .hero-image-wrapper {
        order: 1;
    }

    .hero-content {
        order: 2;
    }

    .hero-image-card {
        overflow: visible;
        max-width: 100%;
    }

    .hero-image-card img {
        border-radius: 8px;
        width: 100%;
    }

    .hero-title-overlay {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        font-size: 1.65rem;
        max-width: 100%;
        padding: 0;
        margin-top: 16px;
        text-align: center;
        line-height: 1.25;
    }

    .hero-subheadline {
        text-align: center;
        font-size: 0.85rem;
        margin-bottom: 20px;
        opacity: 0.7;
    }

    .hero-services-list {
        margin-bottom: 24px;
    }

    .hero-services-list li {
        font-size: 15px;
        margin-bottom: 10px;
    }

    /* ── Hero CTA buttons: stacked, full width ────── */
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
        min-height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        font-size: 14px;
    }

    .btn-hero-primary:active {
        transform: scale(0.98);
    }

    .btn-hero-secondary:active {
        transform: scale(0.98);
    }

    /* ── Trust Badges: 2×2 grid with card style ───── */
    .trust-badges {
        background: #f7f8fa;
        padding: 32px 0;
    }

    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .badge-item {
        flex-direction: column;
        gap: 6px;
        padding: 16px 12px;
        background: var(--white);
        border: none;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        text-align: center;
        min-height: auto;
    }

    .badge-item.badge-with-icon {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .badge-number-large {
        font-size: 1.5rem;
        color: var(--navy);
    }

    .badge-text,
    .badge-text-small {
        font-size: 0.75rem;
        color: #718096;
    }

    .badge-text strong {
        color: var(--navy);
    }

    /* ── Services: single column cards ────────────── */
    .services-section {
        padding: 48px 0;
    }

    .services-heading {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 24px;
        border-radius: 10px;
    }

    .service-card-title {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

    /* ── Contact section ──────────────────────────── */
    .contact-section {
        padding: 48px 0;
    }

    /* ── Footer: collapsible accordions ───────────── */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 0;
    }

    .footer-section {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 0;
    }

    /* First section (logo + description) stays visible */
    .footer-section:first-child {
        padding-bottom: 16px;
        margin-bottom: 8px;
    }

    /* Collapsible sections */
    .footer-section h4 {
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 0;
        margin: 0;
        user-select: none;
        -webkit-user-select: none;
    }

    .footer-section h4::after {
        content: '+';
        font-size: 1.25rem;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.5);
        transition: transform 0.3s ease;
    }

    .footer-section.footer-open h4::after {
        content: '−';
    }

    /* Hide content by default on mobile */
    .footer-section ul,
    .footer-section p:not(:first-child),
    .footer-section .footer-login {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    .footer-section.footer-open ul,
    .footer-section.footer-open p:not(:first-child),
    .footer-section.footer-open .footer-login {
        max-height: 400px;
    }

    .footer-bottom {
        padding-top: 16px;
    }

    .footer-copyright {
        font-size: 0.75rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    /* ── General: typography, spacing, buttons ────── */
    section {
        padding: 48px 0;
    }

    .container {
        padding: 0 20px;
    }

    h2, .section-title {
        font-size: 1.5rem;
    }

    h3, .section-subtitle {
        font-size: 1.1rem;
    }

    /* All buttons: full width on mobile */
    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        width: 100%;
        min-height: 48px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn:active {
        transform: scale(0.98);
    }

    /* Images: rounded corners */
    .hero-image-card img,
    .service-card img,
    .event-listing-img {
        border-radius: 8px;
    }
}

/* ── Tiny screens (480px) ────────────────────────── */
@media (max-width: 480px) {
    .hero-title-overlay {
        font-size: 1.4rem;
    }

    .badges-grid {
        gap: 8px;
    }

    .badge-item {
        padding: 12px 8px;
    }

    .badge-number-large {
        font-size: 1.3rem;
    }
}

/* ========================================
   SERVICES PAGE STYLES - RED BACKGROUND
   ======================================== */

/* Hero Section */
.services-hero-section {
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

.services-hero-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.services-hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 400px;
    filter: blur(2px);
    transform: scale(1.05);
}

.services-hero-placeholder {
    min-height: 400px;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 80px 0;
}

.services-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Services Section (Light Gray Background) */
.services-section {
    background: #FAFAFA;
    padding: 80px 0;
    width: 100%;
}

.services-section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.services-section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: var(--dark-text);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-card-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 51, 88, 0.1) 0%, rgba(213, 16, 43, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 24px 0 24px;
}

.service-icon-badge {
    width: 48px;
    height: 48px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(213, 16, 43, 0.2);
}

.service-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin: 0;
    flex: 1;
}

.service-card-content {
    padding: 20px 24px 24px 24px;
    flex: 1;
}

.service-card-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--dark-text);
    margin: 0;
}

/* Services CTA Section */
.services-cta-section {
    background: var(--navy);
    padding: 100px 0;
    width: 100%;
    text-align: center;
    color: var(--white);
}

.services-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.services-cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
}

.services-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Page Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .services-hero-title {
        font-size: 36px;
    }
    
    .services-section {
        padding: 60px 0;
    }
    
    .services-section-header {
        margin-bottom: 48px;
    }
    
    .services-section-title {
        font-size: 32px;
    }
    
    .services-section-subtitle {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .services-cta-section {
        padding: 80px 0;
    }
    
    .services-cta-title {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .services-hero-overlay {
        padding: 60px 0;
    }
    
    .services-hero-title {
        font-size: 28px;
    }
    
    .services-section {
        padding: 50px 0;
    }
    
    .services-section-header {
        margin-bottom: 40px;
    }
    
    .services-section-title {
        font-size: 28px;
    }
    
    .services-section-subtitle {
        font-size: 15px;
    }
    
    .service-card-header {
        padding: 20px 20px 0 20px;
        gap: 12px;
    }
    
    .service-icon-badge {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    
    .service-card-title {
        font-size: 16px;
    }
    
    .service-card-content {
        padding: 16px 20px 20px 20px;
    }
    
    .service-card-description {
        font-size: 14px;
    }
    
    .services-cta-section {
        padding: 60px 0;
    }
    
    .services-cta-title {
        font-size: 24px;
    }
    
    .services-cta-text {
        font-size: 16px;
    }
    
    .services-cta-buttons {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
    }
}

/* ========================================
   CITIZENSHIP BY INVESTMENT PAGE STYLES
   ======================================== */

/* Hero Image Section */
.cbi-hero-image {
    width: 100%;
    margin: 0;
    padding: 0;
}

.cbi-hero-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.cbi-hero-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    min-height: 500px;
}

.cbi-hero-placeholder {
    min-height: 400px;
}

/* Introduction Section */
.cbi-intro-section {
    background: var(--white);
    padding: 80px 0;
    width: 100%;
}

.cbi-intro-content {
    max-width: 1000px;
    margin: 0 auto;
}

.cbi-intro-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-text);
    text-align: center;
    margin: 0;
}

/* Countries Section */
.cbi-countries-section {
    background: var(--light-gray);
    padding: 80px 0;
    width: 100%;
}

.cbi-countries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.cbi-country-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cbi-country-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.cbi-country-flag {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cbi-country-flag img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cbi-flag-placeholder {
    width: 80px;
    height: 60px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cbi-country-name {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cbi-country-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cbi-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e5e5;
}

.cbi-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cbi-detail-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cbi-detail-value {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--navy);
    font-weight: 600;
}

/* CTA Section */
.cbi-cta-section {
    background: var(--navy);
    padding: 80px 0;
    width: 100%;
    text-align: center;
    color: var(--white);
}

.cbi-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cbi-cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.cbi-cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cbi-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Citizenship by Investment Responsive */
@media (max-width: 900px) {
    .cbi-countries-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cbi-intro-section {
        padding: 60px 0;
    }
    
    .cbi-countries-section {
        padding: 60px 0;
    }
    
    .cbi-cta-section {
        padding: 60px 0;
    }
    
    .cbi-cta-title {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .cbi-intro-text {
        font-size: 16px;
    }
    
    .cbi-country-card {
        padding: 24px;
    }
    
    .cbi-country-name {
        font-size: 18px;
    }
    
    .cbi-detail-label {
        font-size: 13px;
    }
    
    .cbi-detail-value {
        font-size: 15px;
    }
    
    .cbi-cta-title {
        font-size: 24px;
    }
    
    .cbi-cta-text {
        font-size: 16px;
    }
    
    .cbi-cta-buttons {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
    }
}

/* ========================================
   GLOBAL TEMPORARY RESIDENT SERVICES PAGE
   ======================================== */

/* Hero Section with World Map */
.gtr-hero-section {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.gtr-hero-background {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gtr-map-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
    min-height: 500px;
}

.gtr-map-placeholder {
    min-height: 500px;
}

.gtr-hero-overlay-objects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.gtr-passport-overlay {
    position: absolute;
    left: 15%;
    top: 30%;
    transform: rotate(-5deg);
    z-index: 2;
}

.gtr-passport-overlay img {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.gtr-camera-overlay {
    position: absolute;
    left: 10%;
    top: 15%;
    transform: rotate(10deg);
    z-index: 2;
}

.gtr-camera-overlay img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.gtr-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 24px 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gtr-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 16px 40px;
    display: inline-block;
    background: rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* Content Section */
.gtr-content-section {
    background: #E8F4F8;
    padding: 80px 0;
    width: 100%;
}

.gtr-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.gtr-content-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gtr-paragraph {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--navy);
    margin: 0;
}

.gtr-disclaimer {
    font-weight: 600;
    color: var(--red);
}

/* CTA Section */
.gtr-cta-section {
    background: var(--navy);
    padding: 80px 0;
    width: 100%;
    text-align: center;
    color: var(--white);
}

.gtr-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.gtr-cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.gtr-cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
}

.gtr-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Global Temporary Resident Responsive */
@media (max-width: 900px) {
    .gtr-main-title {
        font-size: 32px;
        padding: 0 20px;
    }
    
    .gtr-passport-overlay {
        left: 10%;
        top: 25%;
    }
    
    .gtr-passport-overlay img {
        width: 150px;
    }
    
    .gtr-camera-overlay {
        left: 5%;
        top: 10%;
    }
    
    .gtr-camera-overlay img {
        width: 90px;
    }
    
    .gtr-content-section {
        padding: 60px 0;
    }
    
    .gtr-cta-section {
        padding: 60px 0;
    }
    
    .gtr-cta-title {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .gtr-hero-background {
        min-height: 400px;
    }
    
    .gtr-map-image {
        min-height: 400px;
    }
    
    .gtr-main-title {
        font-size: 24px;
        letter-spacing: 1px;
        padding: 0 16px;
    }
    
    .gtr-passport-overlay {
        left: 5%;
        top: 20%;
    }
    
    .gtr-passport-overlay img {
        width: 120px;
    }
    
    .gtr-camera-overlay {
        left: 2%;
        top: 8%;
    }
    
    .gtr-camera-overlay img {
        width: 70px;
    }
    
    .gtr-content-section {
        padding: 50px 0;
    }
    
    .gtr-paragraph {
        font-size: 16px;
    }
    
    .gtr-cta-section {
        padding: 50px 0;
    }
    
    .gtr-cta-title {
        font-size: 24px;
    }
    
    .gtr-cta-text {
        font-size: 16px;
    }
    
    .gtr-cta-buttons {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
    }
}

/* ========================================
   US J1 OPPORTUNITIES PAGE STYLES
   ======================================== */

/* Hero Section */
.j1-hero-section {
    background: linear-gradient(135deg, #E8F4F8 0%, #FFFFFF 100%);
    padding: 80px 0 60px;
    width: 100%;
    text-align: center;
}

.j1-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--navy);
    margin: 0;
    letter-spacing: -0.5px;
}

/* Job Categories Section */
.j1-categories-section {
    background: #F5F9FA;
    padding: 80px 0;
    width: 100%;
}

.j1-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.j1-category-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.j1-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.j1-category-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.j1-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.j1-category-card:hover .j1-category-image img {
    transform: scale(1.05);
}

.j1-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.j1-category-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.j1-category-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.j1-view-button {
    background: #6BCDE8;
    color: var(--white);
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.j1-view-button:hover {
    background: #4FB8D8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(107, 205, 232, 0.3);
}

/* Application Section */
.j1-apply-section {
    background: var(--white);
    padding: 80px 0;
    width: 100%;
}

.j1-apply-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.j1-apply-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.j1-apply-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 40px;
}

.j1-apply-button-wrapper {
    margin-bottom: 40px;
}

.j1-apply-button {
    background: var(--red);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(213, 16, 43, 0.3);
}

.j1-apply-button:hover {
    background: #B80E25;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(213, 16, 43, 0.4);
}

.j1-eligibility-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.j1-eligibility-link {
    color: var(--red);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.j1-eligibility-link:hover {
    color: #B80E25;
    text-decoration: underline;
}

/* US J1 Opportunities Responsive */
@media (max-width: 1024px) {
    .j1-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .j1-hero-section {
        padding: 60px 0 40px;
    }
    
    .j1-main-title {
        font-size: 36px;
    }
    
    .j1-categories-section {
        padding: 60px 0;
    }
    
    .j1-categories-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .j1-apply-section {
        padding: 60px 0;
    }
    
    .j1-apply-title {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .j1-main-title {
        font-size: 28px;
    }
    
    .j1-category-content {
        padding: 20px;
    }
    
    .j1-category-title {
        font-size: 16px;
    }
    
    .j1-apply-title {
        font-size: 24px;
    }
    
    .j1-apply-text {
        font-size: 16px;
    }
    
    .j1-apply-button {
        padding: 14px 32px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
    }
    
    .j1-eligibility-link {
        font-size: 15px;
    }
}

/* ========================================
   CANADIAN IMMIGRATION SERVICES PAGE STYLES
   ======================================== */

/* Hero Banner Section */
.ci-hero-banner {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ci-hero-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ci-hero-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    min-height: 600px;
}

.ci-hero-banner-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 51, 88, 0.85) 0%, rgba(27, 51, 88, 0.6) 100%);
    z-index: 2;
    pointer-events: none;
}

.ci-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 100px 0;
}

.ci-hero-text {
    max-width: 700px;
    color: var(--white);
}

.ci-hero-badge {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.ci-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.ci-hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.ci-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ci-btn-primary,
.ci-btn-primary-large {
    background: var(--red);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(213, 16, 43, 0.3);
}

.ci-btn-primary:hover,
.ci-btn-primary-large:hover {
    background: #B80E25;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(213, 16, 43, 0.4);
}

.ci-btn-primary-large {
    padding: 18px 42px;
    font-size: 16px;
}

.ci-btn-secondary,
.ci-btn-secondary-large {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.ci-btn-secondary:hover,
.ci-btn-secondary-large:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
}

.ci-btn-secondary-large {
    padding: 18px 42px;
    font-size: 16px;
}

/* Intro Section */
.ci-intro-section {
    background: var(--white);
    padding: 100px 0;
    width: 100%;
}

.ci-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.ci-intro-image-wrapper {
    position: relative;
}

.ci-intro-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.ci-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.ci-intro-image:hover img {
    transform: scale(1.05);
}

.ci-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 24px;
    line-height: 1.2;
}

.ci-section-title-large {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
    text-align: center;
}

.ci-section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: var(--dark-text);
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.ci-intro-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 40px;
}

.ci-features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ci-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ci-feature-icon {
    width: 32px;
    height: 32px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 18px;
}

.ci-feature-text {
    flex: 1;
}

.ci-feature-text strong {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    display: block;
    margin-bottom: 4px;
}

.ci-feature-text p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--dark-text);
    margin: 0;
    line-height: 1.6;
}

/* Services Section */
.ci-services-section {
    background: var(--light-gray);
    padding: 100px 0;
    width: 100%;
}

.ci-services-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.ci-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.ci-service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.ci-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.ci-service-image-container {
    position: relative;
    width: 100%;
    min-height: 200px;
    max-height: 300px;
    overflow: visible;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ci-service-image-container img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}


.ci-service-card:hover .ci-service-image-container img {
    transform: scale(1.05);
}

.ci-service-body {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.ci-service-icon-badge {
    position: absolute;
    top: -30px;
    right: 32px;
    width: 64px;
    height: 64px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(213, 16, 43, 0.3);
    z-index: 2;
    border: 4px solid var(--white);
    line-height: 1;
}

.ci-service-number {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.ci-service-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ci-service-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 24px;
    flex: 1;
    text-align: left;
}

.ci-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(27, 51, 88, 0.1);
}

.ci-service-list li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--dark-text);
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.6;
}

.ci-service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: bold;
    font-size: 16px;
}

/* Process Section */
.ci-process-section {
    background: var(--white);
    padding: 100px 0;
    width: 100%;
}

.ci-process-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.ci-process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.ci-process-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    position: relative;
}

.ci-process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--red) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 8px 20px rgba(27, 51, 88, 0.2);
}

.ci-process-step h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.ci-process-step p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--dark-text);
    line-height: 1.6;
    margin: 0;
}

.ci-process-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--navy), var(--red));
    margin-top: 40px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .ci-process-connector {
        display: none;
    }
}

/* CTA Section */
.ci-cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, #2a4a7a 100%);
    padding: 100px 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.ci-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.ci-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ci-cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.ci-cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
}

.ci-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Canadian Immigration Responsive */
@media (max-width: 1024px) {
    .ci-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .ci-intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .ci-hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .ci-hero-banner {
        min-height: 500px;
    }
    
    .ci-hero-content {
        padding: 60px 0;
    }
    
    .ci-hero-title {
        font-size: 36px;
    }
    
    .ci-hero-description {
        font-size: 18px;
    }
    
    .ci-intro-section {
        padding: 60px 0;
    }
    
    .ci-section-title {
        font-size: 32px;
    }
    
    .ci-section-title-large {
        font-size: 32px;
    }
    
    .ci-services-section {
        padding: 60px 0;
    }
    
    .ci-services-header {
        margin-bottom: 50px;
    }
    
    .ci-services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .ci-process-section {
        padding: 60px 0;
    }
    
    .ci-process-header {
        margin-bottom: 50px;
    }
    
    .ci-cta-section {
        padding: 60px 0;
    }
    
    .ci-cta-title {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .ci-hero-banner {
        min-height: 450px;
    }
    
    .ci-hero-title {
        font-size: 28px;
    }
    
    .ci-hero-description {
        font-size: 16px;
    }
    
    .ci-hero-buttons {
        flex-direction: column;
    }
    
    .ci-btn-primary,
    .ci-btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .ci-section-title {
        font-size: 28px;
    }
    
    .ci-section-title-large {
        font-size: 28px;
    }
    
    .ci-intro-text {
        font-size: 16px;
    }
    
    .ci-service-body {
        padding: 24px;
    }
    
    .ci-service-title {
        font-size: 20px;
    }
    
    .ci-process-step {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .ci-cta-title {
        font-size: 28px;
    }
    
    .ci-cta-text {
        font-size: 18px;
    }
    
    .ci-cta-buttons {
        flex-direction: column;
    }
    
    .ci-btn-primary-large,
    .ci-btn-secondary-large {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   ABOUT US PAGE STYLES - HOMEPAGE MATCH
   ======================================== */

/* SECTION 1: ABOUT HERO */
.about-hero {
    background: var(--white);
    padding: 80px 0;
    width: 100%;
}

.about-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

.about-hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* SECTION 2-8: ABOUT SECTIONS */
.about-section {
    background: var(--white);
    padding: 80px 0;
    width: 100%;
}

.about-section-light {
    background: var(--light-gray);
}

.about-section-dark {
    background: var(--navy);
    color: var(--white);
}

/* Our Background Section */
.background-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.background-image-wrapper {
    position: relative;
}

.background-image-card {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.background-image-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.background-image-placeholder {
    min-height: 500px;
}

.background-text-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Mission Section */
.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-text-large {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-text);
}

/* Verify Section */
.verify-section {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.verify-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.verify-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 400px;
}

.verify-image-placeholder {
    min-height: 400px;
}

.verify-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}

.verify-overlay-content {
    text-align: right;
    max-width: 400px;
}

.verify-text {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.4;
}

.btn-verify {
    background: var(--red);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-verify:hover {
    background: #b80e25;
}

/* RCIC Section */
.rcic-section {
    background: var(--red);
    padding: 80px 0;
    width: 100%;
    color: var(--white);
}

.rcic-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.rcic-content {
    max-width: 1000px;
    margin: 0 auto;
}

.rcic-definition {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 32px;
}

.rcic-definition strong {
    font-weight: 700;
}

.rcic-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rcic-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--white);
}

.check-icon-white {
    color: var(--white);
    flex-shrink: 0;
    margin-top: 4px;
}

.rcic-note {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

/* Let's Work Together Section */
.work-together-intro {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--dark-text);
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.work-together-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.social-media-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.social-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    background: var(--white);
    border: 2px solid var(--navy);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--navy);
    fill: none;
}

.social-icon:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.social-icon:hover svg {
    stroke: var(--white);
}

.contact-form-wrapper {
    flex: 1;
}

.about-contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 0;
    color: var(--dark-text);
    background: var(--white);
    transition: border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: var(--red);
}

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

.form-textarea-red-border {
    border: 2px solid var(--red) !important;
}

.form-textarea-red-border:focus {
    border-color: var(--red) !important;
    outline: none;
}

.form-submit-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

.btn-form-submit {
    background: var(--red);
    color: var(--white);
    padding: 14px 36px;
    border: none;
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-form-submit:hover {
    background: #b30e25;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(213, 16, 43, 0.3);
}

.form-disclaimer {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--dark-text);
    line-height: 1.6;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e5e5;
    clear: both;
}

.section-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.section-heading-white {
    color: var(--white);
}

/* Who We Are Section */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-text);
}

.about-expertise-card {
    background: var(--light-gray);
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid var(--red);
}

.about-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
}

.about-expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-expertise-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--dark-text);
    line-height: 1.6;
}

.about-expertise-list .check-icon {
    color: var(--red);
    flex-shrink: 0;
}

/* Mission and Values */
.mission-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-card,
.values-card {
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.mission-icon,
.values-icon {
    width: 60px;
    height: 60px;
    background: var(--red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 24px;
}

.mission-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.mission-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-text);
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--dark-text);
    line-height: 1.6;
}

.values-list .check-icon {
    color: var(--red);
    flex-shrink: 0;
}

/* Why Choose Us */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-item {
    text-align: center;
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto 24px;
}

.why-choose-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.why-choose-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* What We Offer */
.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-overview-card {
    background: var(--white);
    border: 1px solid #e5e5e5;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-overview-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 24px;
}

.service-overview-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-overview-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--dark-text);
    line-height: 1.6;
}

.service-overview-list .check-icon {
    color: var(--red);
    flex-shrink: 0;
}

.service-overview-list a {
    color: var(--dark-text);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.service-overview-list a:hover {
    color: var(--red);
}

/* Our Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.process-number {
    width: 60px;
    height: 60px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 16px;
}

.process-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.process-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-text);
}

/* Get in Touch */
.contact-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.contact-info-icon {
    color: var(--red);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-link {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.contact-info-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    line-height: 1.8;
}

/* CTA Section */
.about-cta {
    background: var(--red);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Page Responsive */
@media (max-width: 900px) {
    .about-hero-title {
        font-size: 36px;
    }
    
    .background-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .verify-overlay {
        width: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
        align-items: flex-end;
        padding: 2rem;
    }
    
    .verify-overlay-content {
        text-align: center;
        max-width: 100%;
    }
    
    .work-together-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .social-media-sidebar {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    
    .social-icons {
        flex-direction: row;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-values-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .services-overview-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ========================================
   NEWSLETTERS PAGE STYLES
   ======================================== */

.newsletters-hero-section {
    background: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.newsletters-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.5px;
    margin: 0;
}

.newsletters-content-section {
    background: var(--white);
    padding: 60px 0 80px;
}

.newsletters-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.newsletters-left-column {
    background: var(--light-gray);
    padding: 60px 50px;
    border-radius: 12px;
}

.newsletters-intro-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 30px;
}

.newsletters-intro-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 40px;
}

.newsletters-intro-text p {
    margin-bottom: 20px;
}

.newsletters-features-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.newsletters-features-list li {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.btn-newsletter-signup {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-newsletter-signup:hover {
    background: #b30e25;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(213, 16, 43, 0.3);
}

.newsletter-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.btn-rss-feed {
    display: inline-flex;
    align-items: center;
    background: var(--navy);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid var(--navy);
}

.btn-rss-feed:hover {
    background: transparent;
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 51, 88, 0.2);
}

.btn-rss-feed svg {
    flex-shrink: 0;
}

.newsletters-right-column {
    background: #E8F4F8;
    padding: 60px 50px;
    border-radius: 12px;
}

.newsletter-current {
    margin-bottom: 40px;
}

.newsletter-month-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 30px;
}

.newsletter-preview {
    margin-bottom: 30px;
}

.newsletter-preview-container {
    background: var(--white);
    border: 1px solid rgba(27, 51, 88, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.newsletter-preview-image {
    width: 100%;
    height: auto;
    display: block;
}

.newsletter-preview-pdf {
    width: 100%;
    min-height: 600px;
    border: none;
}

.newsletter-placeholder {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 8px;
}

.newsletter-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--navy);
}

.newsletters-archive {
    margin-top: 40px;
}

.newsletters-archive-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--red);
    text-decoration: underline;
    margin-bottom: 20px;
}

.newsletters-archive-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.newsletter-archive-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(27, 51, 88, 0.1);
}

.newsletter-bookmark-icon {
    color: var(--navy);
    margin-right: 12px;
    flex-shrink: 0;
}

.newsletter-archive-link {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.newsletter-archive-link:hover {
    color: var(--red);
    text-decoration: underline;
}

/* Responsive for Newsletters */
@media (max-width: 1024px) {
    .newsletters-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .newsletters-left-column,
    .newsletters-right-column {
        padding: 40px 30px;
    }
}

@media (max-width: 600px) {
    .newsletters-hero-section {
        padding: 60px 0 40px;
    }
    
    .newsletters-main-title {
        font-size: 36px;
    }
    
    .newsletters-intro-title {
        font-size: 28px;
    }
    
    .newsletters-left-column,
    .newsletters-right-column {
        padding: 30px 20px;
    }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.contact-page-wrapper {
    background: #E8F4F8;
    min-height: calc(100vh - 200px);
    padding: 80px 0 60px;
}

.contact-form-card {
    background: var(--white);
    border-radius: 0;
    padding: 60px 80px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--red);
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.contact-form-simple {
    width: 100%;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
}

.contact-form-group-full {
    grid-column: 1 / -1;
}

.contact-form-group label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-text);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-input-underline {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--dark-text);
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--dark-text);
    padding: 12px 0;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-input-underline:focus {
    border-bottom-color: var(--red);
}

.contact-input-underline::placeholder {
    color: rgba(26, 26, 26, 0.4);
}

.contact-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.contact-form-actions {
    margin-top: 40px;
    text-align: center;
}

.btn-contact-submit {
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 16px 48px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-contact-submit:hover {
    background: #b30e25;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(213, 16, 43, 0.3);
}

.contact-success-message,
.contact-error-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
}

.contact-success-message {
    background: rgba(72, 187, 120, 0.1);
    color: #22543d;
    border: 1px solid rgba(72, 187, 120, 0.3);
}

.contact-error-message {
    background: rgba(245, 101, 101, 0.1);
    color: #742a2a;
    border: 1px solid rgba(245, 101, 101, 0.3);
}

.contact-success-message svg,
.contact-error-message svg {
    flex-shrink: 0;
}

.contact-footer-legal {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: center;
    padding: 0 20px;
}

.contact-legal-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-draft-agreement {
    display: inline-block;
    background: #FFA500;
    color: var(--white);
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-draft-agreement:hover {
    background: #e69400;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
}

/* Responsive for Contact Page */
@media (max-width: 768px) {
    .contact-form-card {
        padding: 40px 30px;
    }
    
    .contact-page-title {
        font-size: 36px;
    }
    
    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-group-full {
        grid-column: 1;
    }
}

@media (max-width: 600px) {
    .contact-page-wrapper {
        padding: 60px 0 40px;
    }
    
    .contact-form-card {
        padding: 30px 20px;
    }
    
    .contact-page-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
}

/* ========================================
   EVENTS PAGE STYLES
   ======================================== */

.events-hero-section {
    background: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.events-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.5px;
    margin: 0;
}

.events-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: var(--dark-text);
    margin: 20px 0 0 0;
    font-weight: 400;
}

.event-detail-breadcrumb {
    margin-bottom: 30px;
    text-align: left;
}

.breadcrumb-link {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-link:hover {
    color: var(--red);
}

.events-content-section {
    background: var(--white);
    padding: 60px 0 80px;
}

/* Events Listing Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.event-listing-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.event-listing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.event-listing-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--light-gray);
}

.event-listing-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-listing-card:hover .event-listing-img {
    transform: scale(1.05);
}

.event-listing-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-listing-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.event-listing-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.event-listing-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-listing-icon {
    color: var(--navy);
    flex-shrink: 0;
}

.event-listing-detail-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--dark-text);
    font-weight: 400;
}

.event-listing-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark-text);
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.event-listing-button {
    display: inline-block;
    background: #1B4D5E;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    width: fit-content;
    align-self: flex-start;
}

.event-listing-button:hover {
    background: #155a6e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 77, 94, 0.3);
}

.events-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.events-info-column {
    display: flex;
    flex-direction: column;
}

.event-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.event-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 30px 0;
    line-height: 1.3;
    text-align: center;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.event-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.event-icon {
    color: var(--navy);
    flex-shrink: 0;
}

.event-detail-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--dark-text);
    font-weight: 400;
}

.event-details-button {
    display: inline-block;
    background: #1B4D5E;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    margin: 0 auto 30px;
    display: block;
    width: fit-content;
}

.event-details-button:hover {
    background: #155a6e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 77, 94, 0.3);
}

.event-social-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.share-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--dark-text);
    font-weight: 500;
}

.social-share-icons {
    display: flex;
    gap: 12px;
}

.social-share-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-text);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-share-icon:hover {
    background: var(--light-gray);
    color: var(--navy);
    transform: translateY(-2px);
}

.events-graphic-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-graphic-wrapper {
    width: 100%;
    max-width: 600px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.event-graphic-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.event-expanded-details {
    background: var(--light-gray);
    padding: 80px 0;
}

.event-full-details {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.event-details-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 30px 0;
    text-align: center;
}

.event-description h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--navy);
    margin: 30px 0 15px 0;
}

.event-description h3:first-of-type {
    margin-top: 0;
}

.event-description p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.event-topics-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px 0;
}

.event-topics-list li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-text);
    padding: 10px 0 10px 30px;
    position: relative;
}

.event-topics-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: bold;
    font-size: 18px;
}

.event-registration-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-event-register {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-event-register:hover {
    background: #b80e25;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(213, 16, 43, 0.3);
}

.btn-event-call {
    display: inline-block;
    background: transparent;
    color: var(--navy);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 40px;
    border: 2px solid var(--navy);
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-event-call:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

/* Events Page Responsive Styles */
@media (max-width: 1024px) {
    .events-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .event-graphic-wrapper {
        max-width: 100%;
    }
    
    .event-full-details {
        padding: 40px;
    }
    
    .events-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .about-hero {
        padding: 60px 0;
    }
    
    .about-hero-title {
        font-size: 28px;
    }
    
    .section-heading {
        font-size: 24px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
    }
    
    .events-hero-section {
        padding: 60px 0 40px;
    }
    
    .events-main-title {
        font-size: 36px;
    }
    
    .event-card {
        padding: 30px 20px;
    }
    
    .event-title {
        font-size: 24px;
    }
    
    .event-full-details {
        padding: 30px 20px;
    }
    
    .event-details-title {
        font-size: 28px;
    }
    
    .event-registration-buttons {
        flex-direction: column;
    }
    
    .btn-event-register,
    .btn-event-call {
        width: 100%;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .event-listing-content {
        padding: 24px;
    }
    
    .event-listing-title {
        font-size: 20px;
    }
    
    .event-detail-breadcrumb {
        margin-bottom: 20px;
    }
}

/* ========================================
   RSS Inline Link
   ======================================== */

.rss-inline-link {
    color: var(--red);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.rss-inline-link:hover {
    color: var(--navy);
}

/* ========================================
   IRCC News Feed Section
   ======================================== */

.ircc-news-section {
    padding: 70px 0 80px;
    background: var(--white);
    border-top: 1px solid rgba(27, 51, 88, 0.08);
}

.ircc-news-header {
    text-align: center;
    margin-bottom: 48px;
}

.ircc-news-header-accent {
    width: 48px;
    height: 4px;
    background: var(--red);
    border-radius: 2px;
    margin: 0 auto 20px;
}

.ircc-news-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}

.ircc-news-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--icon-gray);
    margin: 0 0 16px;
    line-height: 1.6;
}

.ircc-news-source-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ircc-news-source-link:hover {
    color: var(--red);
}

.ircc-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ircc-news-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ircc-news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.ircc-news-hidden {
    display: none;
}

.ircc-news-card-accent {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--navy) 0%, var(--red) 100%);
}

.ircc-news-card-body {
    padding: 24px 24px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ircc-news-category {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--white);
    background: var(--navy);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 14px;
    align-self: flex-start;
}

.ircc-news-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    margin: 0 0 12px;
    color: var(--navy);
}

.ircc-news-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ircc-news-card-title a:hover {
    color: var(--red);
}

.ircc-news-card-summary {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--icon-gray);
    line-height: 1.7;
    margin: 0 0 auto;
    padding-bottom: 16px;
}

.ircc-news-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(27, 51, 88, 0.08);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
}

.ircc-news-card-meta time {
    color: var(--icon-gray);
    display: flex;
    align-items: center;
    gap: 4px;
}

.ircc-news-card-meta time svg {
    flex-shrink: 0;
}

.ircc-news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: gap 0.2s ease;
}

.ircc-news-read-more:hover {
    gap: 8px;
}

/* Load More Button */
.ircc-news-load-more {
    text-align: center;
    margin-top: 40px;
}

.btn-ircc-load-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--navy);
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-ircc-load-more:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 51, 88, 0.25);
}

.btn-ircc-load-more svg {
    flex-shrink: 0;
}

/* IRCC Responsive */
@media (max-width: 1024px) {
    .ircc-news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .ircc-news-section {
        padding: 50px 0 60px;
    }

    .ircc-news-title {
        font-size: 28px;
    }

    .ircc-news-subtitle {
        font-size: 15px;
    }

    .ircc-news-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ircc-news-card-body {
        padding: 20px 20px 18px;
    }

    .ircc-news-card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .btn-ircc-load-more {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ircc-news-title {
        font-size: 24px;
    }
}