        :root {
            --tb-primary: #1a73e8;
            --tb-secondary: #34a853;
            --tb-accent: #fbbc05;
            --tb-dark: #202124;
            --tb-light: #f8f9fa;
            --tb-gray: #5f6368;
            --tb-border: #dadce0;
            --tb-shadow: rgba(0, 0, 0, 0.08);
            --tb-hover: #0d62d9;
            --tb-bg-light: rgba(26, 115, 232, 0.05);
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Poppins', sans-serif;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--font-body);
            color: var(--tb-dark);
            line-height: 1.6;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            min-height: 100vh;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: var(--font-heading);
            font-weight: 600;
            color: var(--tb-dark);
        }
        
        a {
            text-decoration: none;
            color: var(--tb-primary);
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: var(--tb-hover);
        }
        
        .contact-hero {
            background: linear-gradient(135deg, var(--tb-primary) 0%, #0d62d9 100%);
            color: white;
            padding: 80px 0 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .contact-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120" viewBox="0 0 120 120"><circle cx="60" cy="60" r="50" fill="none" stroke="white" stroke-width="1" stroke-opacity="0.1"/></svg>');
            background-repeat: repeat;
            opacity: 0.3;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .contact-hero h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }
        
        .contact-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 1.5rem;
            opacity: 0.9;
        }
        
        .hero-cta {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        
        .btn-call {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-call:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.5);
            color: white;
            transform: translateY(-3px);
        }
        
        .btn-email {
            background: white;
            color: var(--tb-primary);
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-email:hover {
            background: var(--tb-light);
            color: var(--tb-primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 20px;
        }
        
        .offices-section {
            margin-bottom: 80px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--tb-primary);
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--tb-primary), var(--tb-secondary));
            border-radius: 2px;
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: var(--tb-gray);
            max-width: 700px;
            margin: 25px auto 0;
        }
        
        /* Office Cards Grid */
        .offices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }
        
        @media (max-width: 1100px) {
            .offices-grid {
                grid-template-columns: 1fr;
                max-width: 800px;
                margin-left: auto;
                margin-right: auto;
            }
        }
        
        @media (max-width: 600px) {
            .offices-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .office-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .office-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
        }
        
        .office-header {
            padding: 30px 30px 20px;
            background: linear-gradient(135deg, var(--tb-primary) 0%, #0d62d9 100%);
            color: white;
            position: relative;
        }
        
        .office-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--tb-accent);
            color: var(--tb-dark);
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        .office-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            opacity: 0.9;
        }
        
        .office-header h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: white;
        }
        
        .office-type {
            font-size: 1.1rem;
            opacity: 0.9;
            font-weight: 500;
        }
        
        .office-body {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .office-info {
            margin-bottom: 30px;
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .info-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--tb-bg-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--tb-primary);
            font-size: 1.1rem;
            flex-shrink: 0;
            margin-right: 15px;
        }
        
        .info-content h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--tb-dark);
        }
        
        .info-content p {
            color: var(--tb-gray);
            line-height: 1.5;
        }
        
        .office-map {
            margin-top: auto;
            border-radius: 12px;
            overflow: hidden;
            height: 200px;
            border: 1px solid var(--tb-border);
        }
        
        /* Contact Methods */
        .contact-methods {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            margin-bottom: 80px;
        }
        
        .methods-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .method-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 15px;
            background: var(--tb-bg-light);
            transition: all 0.3s ease;
        }
        
        .method-card:hover {
            background: linear-gradient(135deg, var(--tb-primary) 0%, #0d62d9 100%);
            transform: translateY(-5px);
        }
        
        .method-card:hover .method-icon {
            background: white;
            color: var(--tb-primary);
        }
        
        .method-card:hover h4,
        .method-card:hover p {
            color: white;
        }
        
        .method-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--tb-primary) 0%, #0d62d9 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }
        
        .method-card h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--tb-dark);
            transition: color 0.3s ease;
        }
        
        .method-card p {
            color: var(--tb-gray);
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }
        
        .method-contact {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--tb-primary);
            display: block;
            transition: color 0.3s ease;
        }
        
        .method-card:hover .method-contact {
            color: white;
        }
        
        .contact-form-section {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        }
        
        .form-header {
            background: linear-gradient(135deg, var(--tb-primary) 0%, #0d62d9 100%);
            color: white;
            padding: 40px;
            text-align: center;
        }
        
        .form-header h2 {
            font-size: 2.2rem;
            margin-bottom: 10px;
            color: white;
        }
        
        .form-header p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .form-body {
            padding: 50px;
        }
        
        @media (max-width: 768px) {
            .form-body {
                padding: 30px 20px;
            }
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-bottom: 25px;
        }
        
        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        
        .form-group {
            margin-bottom: 0;
        }
        
        .form-label {
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--tb-dark);
            font-size: 1rem;
            display: block;
        }
        
        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid var(--tb-border);
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: var(--font-body);
        }
        
        .form-control:focus {
            border-color: var(--tb-primary);
            box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.1);
            outline: none;
        }
        
        textarea.form-control {
            min-height: 180px;
            resize: vertical;
        }
        
        .submit-btn {
            background: linear-gradient(135deg, var(--tb-primary) 0%, #0d62d9 100%);
            color: white;
            border: none;
            padding: 18px 45px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin: 40px auto 0;
            width: 100%;
            max-width: 300px;
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(26, 115, 232, 0.2);
            background: linear-gradient(135deg, #0d62d9 0%, var(--tb-primary) 100%);
        }
        
        .hours-section {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            margin-top: 80px;
        }
        
        .hours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 30px;
        }
        
        .hours-card {
            padding: 30px;
            border-radius: 15px;
            background: var(--tb-bg-light);
        }
        
        .hours-title {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .hours-title i {
            font-size: 1.8rem;
            color: var(--tb-primary);
            margin-right: 15px;
        }
        
        .hours-title h4 {
            font-size: 1.4rem;
            color: var(--tb-dark);
        }
        
        .hours-list {
            list-style: none;
        }
        
        .hours-list li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            justify-content: space-between;
        }
        
        .hours-list li:last-child {
            border-bottom: none;
        }
        
        .day {
            font-weight: 500;
            color: var(--tb-dark);
        }
        
        .time {
            font-weight: 600;
            color: var(--tb-primary);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .contact-hero h1 {
                font-size: 2.3rem;
            }
            
            .offices-grid {
                gap: 30px;
            }
            
            .office-card {
                max-width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .contact-hero {
                padding: 60px 0 40px;
            }
            
            .contact-hero h1 {
                font-size: 2rem;
            }
            
            .hero-cta {
                flex-direction: column;
                align-items: center;
            }
            
            .main-container {
                padding: 40px 15px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .office-header {
                padding: 25px 20px 15px;
            }
            
            .office-body {
                padding: 25px 20px;
            }
            
            .contact-methods,
            .hours-section {
                padding: 30px 20px;
            }
            
            .methods-grid {
                grid-template-columns: 1fr;
            }
        }