
/*** T3SB identifier: t3sbsCSSassets_31347 */

/* t3sbs_assets_31347 */

        :root {
            --primary-blue: #1a4d7a;
            --secondary-blue: #2c6ba0;
            --accent-coral: #e85d3c;
            --accent-warm: #f4a261;
            --text-dark: #1a2332;
            --text-medium: #4a5568;
            --text-light: #718096;
            --bg-light: #f8fafc;
            --bg-white: #ffffff;
            --success-green: #0f9d58;
            --border-light: #e2e8f0;
            --shadow-soft: 0 4px 20px rgba(26, 77, 122, 0.08);
            --shadow-medium: 0 8px 30px rgba(26, 77, 122, 0.12);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            line-height: 1.7;
            color: var(--text-dark);
            background: var(--bg-light);
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3, h4 {

            line-height: 1.2;
            font-weight: 700;
        }

        /* Container */


        /* Header */
        .header {
            background: var(--bg-white);
            border-bottom: 1px solid var(--border-light);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.95);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Crimson Pro', serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary-blue);
        }

        .badge {
            background: var(--bg-light);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-medium);
            font-family: 'Work Sans', sans-serif;
        }

        /* Hero Section */
        .hero {
            padding: 80px 0 100px;
            background: linear-gradient(165deg, #f8fafc 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(44, 107, 160, 0.03) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(-30px, -30px) scale(1.05); }
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: start;
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: 3.2rem;
            color: var(--primary-blue);
            margin-bottom: 24px;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-content h1 .highlight {
            color: var(--accent-coral);
            position: relative;
            display: inline-block;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-medium);
            margin-bottom: 40px;
            line-height: 1.8;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Trust Card */
        .trust-card {
            background: var(--bg-white);
            border-radius: 16px;
            padding: 40px;
            box-shadow: var(--shadow-medium);
            border: 1px solid var(--border-light);
            position: relative;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .trust-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-coral) 0%, var(--accent-warm) 100%);
            border-radius: 16px 16px 0 0;
        }

        .expert-profile {
            display: flex;
            gap: 20px;
            margin-bottom: 32px;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--border-light);
        }

        .expert-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            font-weight: 700;
            font-family: 'Crimson Pro', serif;
            flex-shrink: 0;
        }

        .expert-info h3 {
            font-size: 1.3rem;
            color: var(--primary-blue);
            margin-bottom: 6px;
        }

        .expert-title {
            color: var(--text-medium);
            font-size: 0.95rem;
            margin-bottom: 8px;
        }

        .expert-experience {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .experience-tag {
            background: var(--bg-light);
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 0.8rem;
            color: var(--text-medium);
            font-weight: 500;
        }

        .trust-benefits {
            margin-bottom: 32px;
        }

        .trust-benefits h4 {
            font-size: 1.1rem;
            color: var(--primary-blue);
            margin-bottom: 16px;
            font-family: 'Work Sans', sans-serif;
            font-weight: 600;
        }

        .benefit-list {
            list-style: none;
        }

        .benefit-list li {
            padding: 12px 0;
            padding-left: 32px;
            position: relative;
            color: var(--text-dark);
            font-size: 0.95rem;
            border-bottom: 1px solid var(--bg-light);
        }

        .benefit-list li:last-child {
            border-bottom: none;
        }

        .benefit-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success-green);
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Social Proof */
        .social-proof {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 32px;
        }

        .proof-item {
            text-align: center;
            padding: 20px;
            background: var(--bg-light);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .proof-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-soft);
        }

        .proof-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-coral);
            font-family: 'Crimson Pro', serif;
            display: block;
            margin-bottom: 8px;
        }

        .proof-label {
            font-size: 0.85rem;
            color: var(--text-medium);
            font-weight: 500;
        }

        /* Booking Section */
        .booking-section {
            background: var(--bg-white);
            padding: 80px 0;
        }

        .booking-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .booking-header h2 {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }

        .booking-header p {
            font-size: 1.15rem;
            color: var(--text-medium);
        }

        .booking-grid {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 50px;
            max-width: 1100px;
            margin: 0 auto;
        }

        /* Process Steps */
        .process-sidebar {
            position: sticky;
            top: 100px;
        }

        .process-steps {
            background: var(--bg-light);
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 30px;
        }

        .process-steps h3 {
            font-size: 1.4rem;
            color: var(--primary-blue);
            margin-bottom: 24px;
        }

        .step {
            display: flex;
            gap: 16px;
            margin-bottom: 24px;
            position: relative;
        }

        .step:last-child {
            margin-bottom: 0;
        }

        .step:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 20px;
            top: 48px;
            width: 2px;
            height: calc(100% - 32px);
            background: var(--border-light);
        }

        .step-number {
            width: 42px;
            height: 42px;
            background: var(--primary-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
            flex-shrink: 0;
            z-index: 1;
        }

        .step-content h4 {
            font-size: 1.05rem;
            color: var(--text-dark);
            margin-bottom: 6px;
            font-family: 'Work Sans', sans-serif;
            font-weight: 600;
        }

        .step-content p {
            font-size: 0.9rem;
            color: var(--text-medium);
            line-height: 1.6;
        }

        /* Guarantee Box */
        .guarantee-box {
            background: linear-gradient(135deg, #0f9d58 0%, #0c7a44 100%);
            color: white;
            border-radius: 16px;
            padding: 28px;
            text-align: center;
        }

        .guarantee-icon {
            font-size: 2.5rem;
            margin-bottom: 12px;
        }

        .guarantee-box h4 {
            font-size: 1.15rem;
            margin-bottom: 12px;
            font-family: 'Work Sans', sans-serif;
            font-weight: 600;
        }

        .guarantee-list {
            list-style: none;
            text-align: left;
            font-size: 0.9rem;
            opacity: 0.95;
        }

        .guarantee-list li {
            padding: 6px 0;
            padding-left: 24px;
            position: relative;
        }

        .guarantee-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        /* Calendar */
        .calendar-container {
            background: var(--bg-white);
            border-radius: 16px;
            padding: 40px;
            box-shadow: var(--shadow-soft);
            border: 1px solid var(--border-light);
        }

        .calendar-header {
            margin-bottom: 30px;
        }

        .calendar-header h3 {
            font-size: 1.8rem;
            color: var(--primary-blue);
            margin-bottom: 12px;
        }

        .calendar-subtext {
            color: var(--text-medium);
            font-size: 0.95rem;
        }

        /* Tabs */
        .booking-tabs {
            display: flex;
            gap: 12px;
            margin-bottom: 30px;
            border-bottom: 2px solid var(--border-light);
        }

        .tab-button {
            background: none;
            border: none;
            padding: 12px 20px;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-medium);
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
            margin-bottom: -2px;
            font-family: 'Work Sans', sans-serif;
        }

        .tab-button:hover {
            color: var(--primary-blue);
        }

        .tab-button.active {
            color: var(--primary-blue);
            border-bottom-color: var(--accent-coral);
        }

        /* Calendar Grid */
        .calendar-month {
            text-align: center;
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 8px;
            margin-bottom: 30px;
        }

        .calendar-day-header {
            text-align: center;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-light);
            padding: 8px 0;
        }

        .calendar-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.2s ease;
            border: 1px solid transparent;
            background: var(--bg-light);
            color: var(--text-dark);
            font-weight: 500;
        }

        .calendar-day:hover:not(.disabled):not(.selected) {
            border-color: var(--secondary-blue);
            transform: scale(1.05);
        }

        .calendar-day.disabled {
            opacity: 0.3;
            cursor: not-allowed;
            background: transparent;
        }

        .calendar-day.selected {
            background: var(--primary-blue);
            color: white;
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(26, 77, 122, 0.3);
        }

        .calendar-day.today {
            border-color: var(--accent-coral);
        }

        /* Time Slots */
        .time-slots {
            display: none;
            animation: fadeInUp 0.5s ease-out;
        }

        .time-slots.active {
            display: block;
        }

        .time-slots h4 {
            font-size: 1.1rem;
            color: var(--primary-blue);
            margin-bottom: 16px;
            font-family: 'Work Sans', sans-serif;
            font-weight: 600;
        }

        .time-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }

        .time-slot {
            padding: 12px;
            text-align: center;
            border: 2px solid var(--border-light);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            font-weight: 500;
            font-size: 0.9rem;
            background: var(--bg-white);
        }

        .time-slot:hover:not(.disabled) {
            border-color: var(--secondary-blue);
            background: var(--bg-light);
        }

        .time-slot.disabled {
            opacity: 0.4;
            cursor: not-allowed;
            background: var(--bg-light);
        }

        .time-slot.selected {
            background: var(--primary-blue);
            color: white;
            border-color: var(--primary-blue);
        }

        /* Form */
        .booking-form {
            display: none;
            animation: fadeInUp 0.5s ease-out;
        }

        .booking-form.active {
            display: block;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--border-light);
            border-radius: 8px;
            font-size: 0.95rem;
            font-family: 'Work Sans', sans-serif;
            transition: all 0.2s ease;
            background: var(--bg-white);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary-blue);
            box-shadow: 0 0 0 3px rgba(44, 107, 160, 0.1);
        }

        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }

        /* Project Type Cards */
        .project-types {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-bottom: 20px;
        }

        .project-type-card {
            padding: 16px;
            border: 2px solid var(--border-light);
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s ease;
            background: var(--bg-white);
        }

        .project-type-card:hover {
            border-color: var(--secondary-blue);
            background: var(--bg-light);
        }

        .project-type-card.selected {
            border-color: var(--primary-blue);
            background: rgba(26, 77, 122, 0.05);
        }

        .project-type-icon {
            font-size: 1.8rem;
            margin-bottom: 8px;
        }

        .project-type-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        /* CTA Button */
        .cta-button {
            width: 100%;
            padding: 18px 32px;
            background: linear-gradient(135deg, var(--accent-coral) 0%, var(--accent-warm) 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.05rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(232, 93, 60, 0.3);
            font-family: 'Work Sans', sans-serif;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(232, 93, 60, 0.4);
        }

        .cta-button:active {
            transform: translateY(0);
        }

        .cta-button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        /* Reassurance Section */
        .reassurance {
            background: var(--bg-light);
            padding: 60px 0;
        }

        .reassurance-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .reassurance h3 {
            font-size: 1.8rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }

        .reassurance-text {
            font-size: 1.05rem;
            color: var(--text-medium);
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .reassurance-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            text-align: left;
        }

        .reassurance-item {
            background: var(--bg-white);
            padding: 28px;
            border-radius: 12px;
            border: 1px solid var(--border-light);
        }

        .reassurance-item-icon {
            font-size: 2rem;
            margin-bottom: 16px;
        }

        .reassurance-item h4 {
            font-size: 1.1rem;
            color: var(--primary-blue);
            margin-bottom: 10px;
            font-family: 'Work Sans', sans-serif;
            font-weight: 600;
        }

        .reassurance-item p {
            font-size: 0.9rem;
            color: var(--text-medium);
            line-height: 1.6;
        }

        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background: var(--bg-white);
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .testimonials-header h2 {
            font-size: 2.3rem;
            color: var(--primary-blue);
            margin-bottom: 16px;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .testimonial-card {
            background: var(--bg-light);
            padding: 36px;
            border-radius: 16px;
            position: relative;
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-medium);
        }

        .testimonial-quote {
            font-size: 1rem;
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 24px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .author-info h5 {
            font-size: 0.95rem;
            color: var(--text-dark);
            margin-bottom: 4px;
            font-family: 'Work Sans', sans-serif;
            font-weight: 600;
        }

        .author-role {
            font-size: 0.85rem;
            color: var(--text-medium);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-grid,
            .booking-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .process-sidebar {
                position: static;
            }

            .social-proof {
                grid-template-columns: 1fr;
            }

            .testimonial-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }

            .booking-header h2 {
                font-size: 2rem;
            }

            .time-grid,
            .project-types {
                grid-template-columns: repeat(2, 1fr);
            }

            .reassurance-grid {
                grid-template-columns: 1fr;
            }

            .expert-profile {
                flex-direction: column;
                text-align: center;
            }

            .expert-experience {
                justify-content: center;
            }
        }

        /* Success Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease-out;
        }

        .modal.active {
            display: flex;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background: var(--bg-white);
            border-radius: 20px;
            padding: 50px;
            max-width: 500px;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.4s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .success-icon {
            width: 80px;
            height: 80px;
            background: var(--success-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            margin: 0 auto 24px;
        }

        .modal-content h3 {
            font-size: 1.8rem;
            color: var(--primary-blue);
            margin-bottom: 16px;
        }

        .modal-content p {
            color: var(--text-medium);
            line-height: 1.7;
            margin-bottom: 12px;
        }

        .modal-close {
            margin-top: 30px;
            padding: 14px 32px;
            background: var(--primary-blue);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            font-family: 'Work Sans', sans-serif;
        }
	


/*** T3SB identifier: t3sbsCSSassets_28354 */

/* t3sbs_assets_28354 */
.responsive-iframe-container {
  position: relative;
  width: 100%;
  /* height: calc(100vh - 90px - 200px); overflow: hidden;*/
  min-height: 650px;
}

.responsive-iframe-container iframe {
  position: absolute;
  top: 0px; 
  left: 0;
  width: 100%;
  height: calc(100% + 200px);
  border: 0;
  clip-path: inset(90px 0 200px 0); 
}
@media (max-width: 1200px) {
  .responsive-iframe-container {
    min-height: 800px;
  }
}
@media (max-width: 768px) {
  .responsive-iframe-container {
      min-height: 1200px;
   }
}

	

